結果

問題 No.458 異なる素数の和
ユーザー 👑 KazunKazun
提出日時 2021-02-14 17:14:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 996 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 66,660 KB
最終ジャッジ日時 2024-07-22 02:59:06
合計ジャッジ時間 3,959 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,452 KB
testcase_01 AC 113 ms
65,380 KB
testcase_02 AC 133 ms
65,488 KB
testcase_03 AC 65 ms
64,972 KB
testcase_04 AC 75 ms
65,104 KB
testcase_05 AC 229 ms
65,316 KB
testcase_06 AC 134 ms
66,640 KB
testcase_07 AC 49 ms
60,940 KB
testcase_08 AC 229 ms
65,800 KB
testcase_09 AC 57 ms
64,164 KB
testcase_10 AC 38 ms
52,148 KB
testcase_11 AC 263 ms
65,444 KB
testcase_12 AC 39 ms
52,360 KB
testcase_13 AC 39 ms
52,200 KB
testcase_14 AC 39 ms
53,944 KB
testcase_15 AC 38 ms
52,696 KB
testcase_16 AC 61 ms
65,448 KB
testcase_17 AC 40 ms
53,816 KB
testcase_18 AC 40 ms
53,716 KB
testcase_19 AC 39 ms
52,308 KB
testcase_20 AC 43 ms
59,924 KB
testcase_21 AC 38 ms
53,476 KB
testcase_22 AC 39 ms
52,772 KB
testcase_23 AC 42 ms
59,524 KB
testcase_24 AC 42 ms
59,228 KB
testcase_25 AC 39 ms
52,948 KB
testcase_26 AC 39 ms
52,864 KB
testcase_27 AC 126 ms
65,692 KB
testcase_28 AC 263 ms
66,660 KB
testcase_29 AC 60 ms
65,076 KB
testcase_30 AC 104 ms
64,772 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,...])
    """

    if N==0:
        return [None]

    T=[True]*(N+1)
    T[0]=None
    T[1]=False

    x=4
    while x<=N:
        T[x]=False
        x+=2

    x=9
    while x<=N:
        T[x]=False
        x+=6

    a=5
    Flag=1
    while a*a<=N:
        if T[a]:
            b=a*a
            c=2*a
            while b<=N:
                T[b]=False
                b+=c
        a+=2 if Flag else 4
        Flag^=1

    if mode:
        return T
    else:
        return [k for k in range(N+1) if T[k]]
#================================================
N=int(input())
S=Sieve_of_Eratosthenes(N)
X=[-float("inf")]*(N+1)
X[0]=0

for a in S:
    for k in range(N,a-1,-1):
        X[k]=max(X[k],X[k-a]+1)

print(X[N] if X[N]>-float("inf") else -1)
0