結果

問題 No.458 異なる素数の和
ユーザー mkawa2mkawa2
提出日時 2020-01-01 23:09:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 541 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 1,298 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 64,720 KB
最終ジャッジ日時 2024-11-22 17:22:06
合計ジャッジ時間 18,762 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
63,944 KB
testcase_01 AC 526 ms
64,328 KB
testcase_02 AC 528 ms
63,436 KB
testcase_03 AC 526 ms
64,136 KB
testcase_04 AC 527 ms
63,680 KB
testcase_05 AC 520 ms
62,816 KB
testcase_06 AC 523 ms
62,832 KB
testcase_07 AC 524 ms
63,876 KB
testcase_08 AC 525 ms
63,376 KB
testcase_09 AC 520 ms
63,316 KB
testcase_10 AC 529 ms
63,076 KB
testcase_11 AC 538 ms
63,680 KB
testcase_12 AC 530 ms
64,000 KB
testcase_13 AC 535 ms
62,900 KB
testcase_14 AC 528 ms
63,140 KB
testcase_15 AC 524 ms
63,672 KB
testcase_16 AC 523 ms
63,380 KB
testcase_17 AC 541 ms
64,176 KB
testcase_18 AC 523 ms
64,720 KB
testcase_19 AC 530 ms
62,892 KB
testcase_20 AC 525 ms
63,632 KB
testcase_21 AC 513 ms
63,824 KB
testcase_22 AC 524 ms
63,148 KB
testcase_23 AC 519 ms
63,132 KB
testcase_24 AC 525 ms
63,540 KB
testcase_25 AC 521 ms
63,084 KB
testcase_26 AC 514 ms
63,316 KB
testcase_27 AC 515 ms
63,192 KB
testcase_28 AC 514 ms
63,948 KB
testcase_29 AC 513 ms
63,928 KB
testcase_30 AC 518 ms
63,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

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
    for p in pp:
        for x in range(20000,-1,-1):
            if cntpri[x]==-1:continue
            if x+p>20000:continue
            cntpri[x+p]=max(cntpri[x+p],cntpri[x]+1)
    print(cntpri[II()])

main()
0