結果

問題 No.458 異なる素数の和
ユーザー mkawa2mkawa2
提出日時 2020-01-01 23:04:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 630 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 64,232 KB
最終ジャッジ日時 2024-05-02 05:59:28
合計ジャッジ時間 7,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 192 ms
63,320 KB
testcase_01 AC 192 ms
62,984 KB
testcase_02 AC 200 ms
63,056 KB
testcase_03 AC 190 ms
63,248 KB
testcase_04 AC 190 ms
62,444 KB
testcase_05 AC 192 ms
63,240 KB
testcase_06 AC 191 ms
63,120 KB
testcase_07 AC 194 ms
63,196 KB
testcase_08 WA -
testcase_09 AC 192 ms
63,528 KB
testcase_10 AC 211 ms
63,676 KB
testcase_11 AC 196 ms
62,892 KB
testcase_12 AC 190 ms
62,756 KB
testcase_13 AC 190 ms
63,516 KB
testcase_14 AC 188 ms
63,740 KB
testcase_15 AC 195 ms
63,440 KB
testcase_16 AC 191 ms
62,832 KB
testcase_17 AC 195 ms
62,252 KB
testcase_18 AC 190 ms
63,184 KB
testcase_19 AC 189 ms
63,800 KB
testcase_20 AC 190 ms
63,700 KB
testcase_21 AC 193 ms
64,152 KB
testcase_22 AC 193 ms
63,872 KB
testcase_23 AC 194 ms
62,956 KB
testcase_24 AC 192 ms
64,200 KB
testcase_25 AC 192 ms
63,080 KB
testcase_26 AC 194 ms
64,232 KB
testcase_27 AC 190 ms
63,340 KB
testcase_28 AC 189 ms
62,496 KB
testcase_29 AC 191 ms
63,500 KB
testcase_30 AC 190 ms
63,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
def II(): return int(sys.stdin.readline())

def main():
    prime=[0,1]*10005
    prime[1]=0
    prime[2]=1
    for x in range(3,20001):
        if x**2>20000:break
        if prime[x]:
            for y in range(x**2,20001,x):
                prime[y]=0
    pp=[]
    for p in range(2,20001):
        if prime[p]:pp.append(p)

    cntpri=[-1]*20001
    cntpri[0]=0
    s=0
    for p in pp:
        for x in range(s+1):
            if cntpri[x]==-1:continue
            if x+p>20000:break
            cntpri[x+p]=max(cntpri[x+p],cntpri[x]+1)
        s+=p
    print(cntpri[II()])

main()
0