結果

問題 No.458 異なる素数の和
ユーザー mkawa2mkawa2
提出日時 2020-01-01 23:09:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 63,104 KB
最終ジャッジ日時 2024-05-02 06:00:55
合計ジャッジ時間 18,576 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 541 ms
62,848 KB
testcase_01 AC 539 ms
62,464 KB
testcase_02 AC 535 ms
62,592 KB
testcase_03 AC 530 ms
62,336 KB
testcase_04 AC 542 ms
63,104 KB
testcase_05 AC 540 ms
62,592 KB
testcase_06 AC 542 ms
62,464 KB
testcase_07 AC 546 ms
62,208 KB
testcase_08 AC 547 ms
62,592 KB
testcase_09 AC 543 ms
62,720 KB
testcase_10 AC 539 ms
62,848 KB
testcase_11 AC 538 ms
62,336 KB
testcase_12 AC 533 ms
62,720 KB
testcase_13 AC 535 ms
62,720 KB
testcase_14 AC 527 ms
62,464 KB
testcase_15 AC 532 ms
62,720 KB
testcase_16 AC 533 ms
62,464 KB
testcase_17 AC 542 ms
62,720 KB
testcase_18 AC 541 ms
62,464 KB
testcase_19 AC 548 ms
62,848 KB
testcase_20 AC 546 ms
62,336 KB
testcase_21 AC 539 ms
62,720 KB
testcase_22 AC 540 ms
62,464 KB
testcase_23 AC 543 ms
62,848 KB
testcase_24 AC 543 ms
62,464 KB
testcase_25 AC 542 ms
62,592 KB
testcase_26 AC 542 ms
62,464 KB
testcase_27 AC 540 ms
62,848 KB
testcase_28 AC 533 ms
62,208 KB
testcase_29 AC 540 ms
62,720 KB
testcase_30 AC 546 ms
62,720 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