結果

問題 No.843 Triple Primes
ユーザー 👑 KazunKazun
提出日時 2020-10-03 03:32:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 770 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 74,676 KB
最終ジャッジ日時 2024-07-18 04:01:25
合計ジャッジ時間 3,820 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,788 KB
testcase_01 AC 60 ms
74,676 KB
testcase_02 AC 38 ms
59,476 KB
testcase_03 AC 38 ms
58,444 KB
testcase_04 AC 42 ms
60,184 KB
testcase_05 AC 39 ms
58,984 KB
testcase_06 AC 41 ms
59,632 KB
testcase_07 AC 60 ms
71,296 KB
testcase_08 AC 67 ms
73,008 KB
testcase_09 AC 62 ms
74,172 KB
testcase_10 AC 55 ms
71,448 KB
testcase_11 AC 59 ms
73,216 KB
testcase_12 AC 61 ms
74,344 KB
testcase_13 AC 58 ms
72,532 KB
testcase_14 AC 60 ms
73,272 KB
testcase_15 AC 61 ms
72,404 KB
testcase_16 AC 59 ms
71,100 KB
testcase_17 AC 36 ms
53,268 KB
testcase_18 AC 36 ms
52,264 KB
testcase_19 AC 36 ms
52,096 KB
testcase_20 AC 50 ms
64,876 KB
testcase_21 AC 46 ms
62,116 KB
testcase_22 AC 55 ms
67,744 KB
testcase_23 AC 53 ms
69,460 KB
testcase_24 AC 45 ms
64,296 KB
testcase_25 AC 45 ms
64,444 KB
testcase_26 AC 62 ms
74,100 KB
testcase_27 AC 40 ms
60,880 KB
testcase_28 AC 62 ms
73,516 KB
testcase_29 AC 45 ms
64,616 KB
testcase_30 AC 60 ms
73,804 KB
testcase_31 AC 40 ms
61,404 KB
testcase_32 AC 38 ms
60,920 KB
testcase_33 AC 45 ms
65,652 KB
testcase_34 AC 49 ms
68,564 KB
testcase_35 AC 62 ms
73,836 KB
testcase_36 AC 42 ms
63,484 KB
testcase_37 AC 55 ms
71,268 KB
testcase_38 AC 56 ms
69,696 KB
testcase_39 AC 60 ms
73,740 KB
testcase_40 AC 32 ms
52,680 KB
testcase_41 AC 32 ms
52,412 KB
testcase_42 AC 65 ms
72,844 KB
testcase_43 AC 60 ms
73,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#エラトステネスの篩
def Sieve_of_Eratosthenes(N,mode=False):
    """Nまでのエラトステネスの篩を実行

    N:自然数
    mode:False->素数のリスト,True->素数かどうかのリスト
    (False->[2,3,5,...],True->[False,False,True,True,False,True,...])
    """

    T=[True]*(N+1)
    T[0]=T[1]=0
    a=2
    while a*a<=N:
        if T[a]:
            b=a*a
            while b<=N:
                T[b]=False
                b+=a
        a+=1

    if mode:
        return T
    else:
        return [k for k in range(N+1) if T[k]]
#================================================
N=int(input())

if N==1:
    print(0)
    exit()

T=Sieve_of_Eratosthenes(N)[1:]
U=set([r*r for r in T])
X=1
for q in T:
    if 2+q in U:
        X+=2
print(X)
0