結果

問題 No.843 Triple Primes
ユーザー mkawa2mkawa2
提出日時 2019-07-03 21:01:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,127 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-09-16 07:43:35
合計ジャッジ時間 24,058 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 1,070 ms
14,848 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 33 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 33 ms
10,496 KB
testcase_07 AC 803 ms
14,592 KB
testcase_08 AC 907 ms
14,720 KB
testcase_09 AC 1,025 ms
14,848 KB
testcase_10 AC 819 ms
14,592 KB
testcase_11 AC 954 ms
14,720 KB
testcase_12 AC 1,026 ms
14,592 KB
testcase_13 AC 1,031 ms
14,848 KB
testcase_14 AC 1,047 ms
14,592 KB
testcase_15 AC 810 ms
14,592 KB
testcase_16 AC 826 ms
14,464 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 26 ms
10,496 KB
testcase_20 AC 214 ms
11,776 KB
testcase_21 AC 121 ms
11,392 KB
testcase_22 AC 517 ms
14,208 KB
testcase_23 AC 542 ms
14,080 KB
testcase_24 AC 236 ms
11,776 KB
testcase_25 AC 182 ms
11,520 KB
testcase_26 AC 1,107 ms
14,848 KB
testcase_27 AC 53 ms
10,880 KB
testcase_28 AC 996 ms
14,720 KB
testcase_29 AC 247 ms
11,776 KB
testcase_30 AC 1,127 ms
14,848 KB
testcase_31 AC 76 ms
11,008 KB
testcase_32 AC 49 ms
10,752 KB
testcase_33 AC 281 ms
11,904 KB
testcase_34 AC 484 ms
14,080 KB
testcase_35 AC 1,056 ms
14,848 KB
testcase_36 AC 157 ms
11,648 KB
testcase_37 AC 761 ms
14,592 KB
testcase_38 AC 663 ms
14,336 KB
testcase_39 AC 1,085 ms
14,720 KB
testcase_40 AC 27 ms
10,496 KB
testcase_41 AC 27 ms
10,752 KB
testcase_42 AC 915 ms
14,720 KB
testcase_43 AC 941 ms
14,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
if n==1:
    print(0)
    exit()
elif n==2:
    print(1)
    exit()
ele=[]
for i in range(3,n+1,2):
    for e in ele:
        if i%e==0:
            break
        if e**2>i:
            ele.append(i)
            break
    else:
        ele.append(i)
sel=set(ele)
cnt=0
for r in ele:
    p=r**2-2
    if p in sel:
        cnt+=1
    if p>n:
        break
print(cnt*2+1)
0