結果

問題 No.843 Triple Primes
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-12 12:27:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-06-28 14:13:59
合計ジャッジ時間 4,944 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 122 ms
16,384 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 106 ms
15,104 KB
testcase_08 AC 113 ms
15,616 KB
testcase_09 AC 121 ms
16,292 KB
testcase_10 AC 106 ms
15,488 KB
testcase_11 AC 114 ms
15,872 KB
testcase_12 AC 117 ms
16,128 KB
testcase_13 AC 119 ms
16,000 KB
testcase_14 AC 118 ms
16,116 KB
testcase_15 AC 106 ms
15,232 KB
testcase_16 AC 105 ms
15,360 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 28 ms
10,624 KB
testcase_20 AC 52 ms
12,160 KB
testcase_21 AC 43 ms
11,568 KB
testcase_22 AC 80 ms
14,404 KB
testcase_23 AC 81 ms
14,184 KB
testcase_24 AC 54 ms
12,160 KB
testcase_25 AC 47 ms
11,904 KB
testcase_26 AC 122 ms
16,284 KB
testcase_27 AC 35 ms
11,008 KB
testcase_28 AC 119 ms
16,128 KB
testcase_29 AC 58 ms
12,416 KB
testcase_30 AC 122 ms
16,256 KB
testcase_31 AC 38 ms
11,008 KB
testcase_32 AC 33 ms
11,008 KB
testcase_33 AC 59 ms
12,672 KB
testcase_34 AC 76 ms
14,076 KB
testcase_35 AC 120 ms
16,128 KB
testcase_36 AC 48 ms
11,648 KB
testcase_37 AC 102 ms
15,104 KB
testcase_38 AC 91 ms
14,304 KB
testcase_39 AC 119 ms
16,000 KB
testcase_40 AC 30 ms
10,752 KB
testcase_41 AC 29 ms
10,752 KB
testcase_42 AC 109 ms
15,616 KB
testcase_43 AC 112 ms
15,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes(n):
    is_prime=[True] * (n+1)
    is_prime[0]=False
    is_prime[1]=False
    for i in range(2,int(n**0.5)+1):
        if not is_prime[i]:
            continue
        for j in range(i*2,n+1,i):
            is_prime[j]=False
    return [i for i in range(n+1) if is_prime[i]]
n=int(input())
l=Eratosthenes(n)
ans=0
l=set(l)
for i in l:
    if i*i-2 in l:
        ans+=1
ans*=2
if n>=2:
    ans-=1
print(ans)
0