結果

問題 No.843 Triple Primes
ユーザー yansi819yansi819
提出日時 2024-05-12 17:45:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 423 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 81,576 KB
実行使用メモリ 149,044 KB
最終ジャッジ日時 2024-12-20 09:11:43
合計ジャッジ時間 73,891 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,968 KB
testcase_01 TLE -
testcase_02 AC 50 ms
68,700 KB
testcase_03 AC 49 ms
68,096 KB
testcase_04 AC 57 ms
70,128 KB
testcase_05 AC 47 ms
139,672 KB
testcase_06 AC 57 ms
69,156 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 WA -
testcase_18 AC 40 ms
131,588 KB
testcase_19 AC 38 ms
59,968 KB
testcase_20 AC 663 ms
149,044 KB
testcase_21 AC 257 ms
74,096 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 732 ms
78,168 KB
testcase_25 AC 470 ms
76,808 KB
testcase_26 TLE -
testcase_27 AC 88 ms
70,832 KB
testcase_28 TLE -
testcase_29 AC 818 ms
76,924 KB
testcase_30 TLE -
testcase_31 AC 135 ms
71,908 KB
testcase_32 AC 80 ms
141,772 KB
testcase_33 AC 1,019 ms
78,232 KB
testcase_34 AC 1,994 ms
76,304 KB
testcase_35 TLE -
testcase_36 AC 387 ms
67,104 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 40 ms
52,440 KB
testcase_41 WA -
testcase_42 TLE -
testcase_43 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def primes(N):
    #N = 5 * (10 ** 5)
    res = []
    isprime = [True] * (N + 1)
    isprime[0] = isprime[1] = False
    for i in range(2, N + 1):
        if isprime[i]:
            res.append(i)
            for j in range(i * 2, N + 1, i):
                isprime[j] = False
    return res

N = int(input())
P = primes(N)
#print(len(P))
ans = 0
for q in P:
    if (q + 2) ** 0.5 in P:
        ans += 1
print(ans * 2 - 1)
0