結果

問題 No.843 Triple Primes
ユーザー amyuamyu
提出日時 2019-06-28 22:46:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 232 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 77,564 KB
最終ジャッジ日時 2024-07-02 05:01:51
合計ジャッジ時間 5,884 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,496 KB
testcase_01 AC 161 ms
76,976 KB
testcase_02 AC 47 ms
60,452 KB
testcase_03 AC 48 ms
60,568 KB
testcase_04 AC 50 ms
62,024 KB
testcase_05 AC 48 ms
60,248 KB
testcase_06 AC 49 ms
62,252 KB
testcase_07 AC 131 ms
73,848 KB
testcase_08 AC 141 ms
75,924 KB
testcase_09 AC 158 ms
76,888 KB
testcase_10 AC 137 ms
73,860 KB
testcase_11 AC 146 ms
74,860 KB
testcase_12 AC 156 ms
75,916 KB
testcase_13 AC 150 ms
76,560 KB
testcase_14 AC 151 ms
75,464 KB
testcase_15 AC 132 ms
73,988 KB
testcase_16 AC 135 ms
73,600 KB
testcase_17 WA -
testcase_18 AC 38 ms
52,960 KB
testcase_19 AC 37 ms
52,704 KB
testcase_20 AC 69 ms
66,828 KB
testcase_21 AC 58 ms
63,112 KB
testcase_22 AC 100 ms
69,912 KB
testcase_23 AC 105 ms
70,048 KB
testcase_24 AC 71 ms
66,464 KB
testcase_25 AC 65 ms
65,592 KB
testcase_26 AC 158 ms
77,068 KB
testcase_27 AC 51 ms
61,700 KB
testcase_28 AC 154 ms
76,736 KB
testcase_29 AC 74 ms
66,532 KB
testcase_30 AC 156 ms
76,520 KB
testcase_31 AC 53 ms
62,572 KB
testcase_32 AC 53 ms
63,356 KB
testcase_33 AC 78 ms
67,508 KB
testcase_34 AC 96 ms
69,960 KB
testcase_35 AC 158 ms
77,564 KB
testcase_36 AC 61 ms
64,636 KB
testcase_37 AC 128 ms
73,400 KB
testcase_38 AC 112 ms
71,228 KB
testcase_39 AC 155 ms
76,448 KB
testcase_40 AC 40 ms
52,124 KB
testcase_41 WA -
testcase_42 AC 139 ms
74,848 KB
testcase_43 AC 147 ms
75,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
p=[2]
for i in range(3,n+1):
    for j in p:
        if j*j>i:
            p.append(i)
            break
        if i%j==0:
            break
s=set(p)
ans=1
for i in p[1:]:
    if i*i-2 in s:
        ans+=2
print(ans)
0