結果

問題 No.843 Triple Primes
ユーザー mkawa2mkawa2
提出日時 2019-07-03 21:02:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 580 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 75,392 KB
最終ジャッジ日時 2024-09-19 14:16:28
合計ジャッジ時間 5,595 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 144 ms
75,392 KB
testcase_02 AC 43 ms
60,032 KB
testcase_03 AC 42 ms
60,032 KB
testcase_04 AC 44 ms
60,160 KB
testcase_05 AC 41 ms
60,544 KB
testcase_06 AC 43 ms
59,776 KB
testcase_07 AC 118 ms
71,936 KB
testcase_08 AC 127 ms
73,728 KB
testcase_09 AC 144 ms
75,264 KB
testcase_10 AC 122 ms
72,192 KB
testcase_11 AC 134 ms
73,856 KB
testcase_12 AC 142 ms
75,136 KB
testcase_13 AC 137 ms
73,472 KB
testcase_14 AC 137 ms
73,776 KB
testcase_15 AC 124 ms
72,508 KB
testcase_16 AC 123 ms
72,192 KB
testcase_17 AC 36 ms
51,840 KB
testcase_18 AC 35 ms
52,096 KB
testcase_19 AC 36 ms
51,968 KB
testcase_20 AC 61 ms
64,640 KB
testcase_21 AC 52 ms
62,208 KB
testcase_22 AC 92 ms
68,224 KB
testcase_23 AC 94 ms
69,504 KB
testcase_24 AC 68 ms
65,024 KB
testcase_25 AC 60 ms
63,232 KB
testcase_26 AC 146 ms
74,752 KB
testcase_27 AC 45 ms
60,416 KB
testcase_28 AC 137 ms
73,600 KB
testcase_29 AC 65 ms
65,280 KB
testcase_30 AC 142 ms
75,136 KB
testcase_31 AC 48 ms
61,440 KB
testcase_32 AC 45 ms
60,544 KB
testcase_33 AC 67 ms
64,896 KB
testcase_34 AC 85 ms
68,352 KB
testcase_35 AC 146 ms
75,264 KB
testcase_36 AC 55 ms
62,720 KB
testcase_37 AC 116 ms
72,448 KB
testcase_38 AC 102 ms
69,760 KB
testcase_39 AC 139 ms
74,880 KB
testcase_40 AC 36 ms
51,584 KB
testcase_41 AC 36 ms
51,968 KB
testcase_42 AC 125 ms
73,216 KB
testcase_43 AC 133 ms
73,856 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