結果

問題 No.843 Triple Primes
ユーザー rlangevinrlangevin
提出日時 2023-01-03 10:47:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 69,760 KB
最終ジャッジ日時 2024-05-05 07:06:50
合計ジャッジ時間 4,015 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 71 ms
69,632 KB
testcase_02 AC 43 ms
58,240 KB
testcase_03 AC 42 ms
58,496 KB
testcase_04 AC 45 ms
59,136 KB
testcase_05 AC 43 ms
58,752 KB
testcase_06 AC 44 ms
59,392 KB
testcase_07 AC 62 ms
67,456 KB
testcase_08 AC 67 ms
68,736 KB
testcase_09 AC 73 ms
69,376 KB
testcase_10 AC 61 ms
67,456 KB
testcase_11 AC 64 ms
68,480 KB
testcase_12 AC 65 ms
69,376 KB
testcase_13 AC 64 ms
68,864 KB
testcase_14 AC 64 ms
68,864 KB
testcase_15 AC 65 ms
67,456 KB
testcase_16 AC 64 ms
67,840 KB
testcase_17 AC 38 ms
51,712 KB
testcase_18 AC 38 ms
52,096 KB
testcase_19 AC 36 ms
52,096 KB
testcase_20 AC 48 ms
62,592 KB
testcase_21 AC 48 ms
61,184 KB
testcase_22 AC 56 ms
64,768 KB
testcase_23 AC 59 ms
65,664 KB
testcase_24 AC 51 ms
62,336 KB
testcase_25 AC 49 ms
61,312 KB
testcase_26 AC 65 ms
69,760 KB
testcase_27 AC 45 ms
59,776 KB
testcase_28 AC 67 ms
68,864 KB
testcase_29 AC 52 ms
62,848 KB
testcase_30 AC 66 ms
69,760 KB
testcase_31 AC 49 ms
60,416 KB
testcase_32 AC 48 ms
59,904 KB
testcase_33 AC 53 ms
62,976 KB
testcase_34 AC 56 ms
65,024 KB
testcase_35 AC 68 ms
69,504 KB
testcase_36 AC 50 ms
61,184 KB
testcase_37 AC 61 ms
67,584 KB
testcase_38 AC 58 ms
65,920 KB
testcase_39 AC 68 ms
69,504 KB
testcase_40 AC 38 ms
52,352 KB
testcase_41 AC 37 ms
51,840 KB
testcase_42 AC 64 ms
68,096 KB
testcase_43 AC 65 ms
68,736 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())
if N == 1:
    print(0)
    exit()
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