結果

問題 No.843 Triple Primes
ユーザー rlangevinrlangevin
提出日時 2023-01-03 10:46:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 539 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 69,888 KB
最終ジャッジ日時 2024-11-27 01:47:45
合計ジャッジ時間 4,266 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 66 ms
69,796 KB
testcase_02 AC 42 ms
58,624 KB
testcase_03 AC 42 ms
58,880 KB
testcase_04 AC 44 ms
59,136 KB
testcase_05 AC 43 ms
58,880 KB
testcase_06 AC 44 ms
59,520 KB
testcase_07 AC 62 ms
67,456 KB
testcase_08 AC 64 ms
68,480 KB
testcase_09 AC 65 ms
69,632 KB
testcase_10 AC 63 ms
67,456 KB
testcase_11 AC 66 ms
68,864 KB
testcase_12 AC 67 ms
69,760 KB
testcase_13 AC 64 ms
68,992 KB
testcase_14 AC 63 ms
69,248 KB
testcase_15 AC 62 ms
67,456 KB
testcase_16 AC 61 ms
67,840 KB
testcase_17 WA -
testcase_18 AC 38 ms
52,480 KB
testcase_19 AC 37 ms
51,968 KB
testcase_20 AC 47 ms
62,976 KB
testcase_21 AC 46 ms
60,928 KB
testcase_22 AC 56 ms
65,152 KB
testcase_23 AC 55 ms
65,280 KB
testcase_24 AC 48 ms
62,336 KB
testcase_25 AC 47 ms
61,696 KB
testcase_26 AC 64 ms
69,888 KB
testcase_27 AC 45 ms
59,776 KB
testcase_28 AC 63 ms
68,736 KB
testcase_29 AC 50 ms
62,720 KB
testcase_30 AC 66 ms
69,504 KB
testcase_31 AC 46 ms
60,160 KB
testcase_32 AC 46 ms
59,648 KB
testcase_33 AC 52 ms
62,848 KB
testcase_34 AC 56 ms
64,896 KB
testcase_35 AC 67 ms
69,760 KB
testcase_36 AC 48 ms
61,184 KB
testcase_37 AC 61 ms
67,328 KB
testcase_38 AC 58 ms
66,048 KB
testcase_39 AC 64 ms
69,376 KB
testcase_40 AC 38 ms
52,480 KB
testcase_41 WA -
testcase_42 AC 65 ms
68,512 KB
testcase_43 AC 64 ms
68,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *

def Sieve(n):
    lst = [True] * (n + 1)
    S = set()
    for i in range(2, ceil(sqrt(n)) + 1):
        if lst[i]:
            for j in range(2 * i, n + 1, i):
                lst[j] = False
    for i in range(2, n + 1):
        if lst[i]:
            S.add(i)
    return S


N = int(input())
S = set()
prime_set= Sieve(N)
i = 1
while i * i <= N + 2:
    if i in prime_set:
        S.add(i * i)
    i += 1
    

ans = 1
for v in prime_set:
    if v == 2:
        continue
    if v + 2 in S:
        ans += 2
print(ans)
0