結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 215 ms
63,268 KB
testcase_01 AC 214 ms
62,436 KB
testcase_02 AC 214 ms
62,580 KB
testcase_03 AC 214 ms
62,372 KB
testcase_04 AC 215 ms
62,524 KB
testcase_05 AC 215 ms
62,396 KB
testcase_06 AC 215 ms
62,844 KB
testcase_07 AC 216 ms
62,376 KB
testcase_08 WA -
testcase_09 AC 215 ms
62,832 KB
testcase_10 AC 213 ms
63,744 KB
testcase_11 AC 214 ms
62,952 KB
testcase_12 AC 215 ms
62,120 KB
testcase_13 AC 215 ms
63,068 KB
testcase_14 AC 215 ms
62,312 KB
testcase_15 AC 214 ms
62,688 KB
testcase_16 AC 216 ms
63,584 KB
testcase_17 AC 216 ms
63,604 KB
testcase_18 AC 214 ms
63,808 KB
testcase_19 AC 214 ms
63,248 KB
testcase_20 AC 215 ms
64,012 KB
testcase_21 AC 216 ms
62,832 KB
testcase_22 AC 215 ms
62,560 KB
testcase_23 AC 215 ms
63,124 KB
testcase_24 AC 214 ms
62,636 KB
testcase_25 AC 215 ms
62,464 KB
testcase_26 AC 214 ms
63,068 KB
testcase_27 AC 215 ms
62,572 KB
testcase_28 AC 214 ms
62,852 KB
testcase_29 AC 214 ms
63,600 KB
testcase_30 AC 219 ms
63,044 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