結果

問題 No.458 異なる素数の和
ユーザー flippergoflippergo
提出日時 2024-10-05 23:35:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 559 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 418,784 KB
最終ジャッジ日時 2024-10-05 23:36:04
合計ジャッジ時間 10,902 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
73,728 KB
testcase_01 AC 590 ms
248,192 KB
testcase_02 AC 703 ms
285,820 KB
testcase_03 AC 287 ms
156,196 KB
testcase_04 AC 310 ms
156,868 KB
testcase_05 AC 1,082 ms
385,792 KB
testcase_06 AC 711 ms
279,632 KB
testcase_07 AC 99 ms
87,936 KB
testcase_08 WA -
testcase_09 AC 167 ms
110,384 KB
testcase_10 AC 50 ms
65,312 KB
testcase_11 AC 1,147 ms
418,784 KB
testcase_12 AC 57 ms
65,280 KB
testcase_13 WA -
testcase_14 AC 54 ms
65,536 KB
testcase_15 AC 62 ms
66,048 KB
testcase_16 AC 230 ms
133,248 KB
testcase_17 AC 59 ms
66,944 KB
testcase_18 AC 56 ms
66,688 KB
testcase_19 AC 54 ms
65,920 KB
testcase_20 WA -
testcase_21 AC 57 ms
65,920 KB
testcase_22 AC 55 ms
65,792 KB
testcase_23 AC 60 ms
68,096 KB
testcase_24 AC 60 ms
68,224 KB
testcase_25 AC 55 ms
66,304 KB
testcase_26 AC 57 ms
66,560 KB
testcase_27 AC 680 ms
274,048 KB
testcase_28 AC 1,146 ms
414,976 KB
testcase_29 AC 125 ms
88,904 KB
testcase_30 AC 500 ms
225,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P = list(range(20000+1))
P[0] = 0
P[1] = 0
for i in range(2,20000+1):
    if i*i>20000:break
    for j in range(i*i,20000+1,i):
        P[j] = P[i]
Q = []
for i in range(2,20000+1):
    if P[i]==i:
        Q.append(i)
N = len(Q)
Q = [0]+Q
M = int(input())
INFTY = 10**5
dp = [[-INFTY for _ in range(M+1)] for _ in range(N+1)]
if M>1:
    dp[1][2] = 1
for i in range(2,N+1):
    for j in range(M+1):
        dp[i][j] = dp[i-1][j]
        if j>=Q[i]:
            dp[i][j] = max(dp[i][j],dp[i-1][j-Q[i]]+1)
if dp[N][M]<=0:
    print(-1)
else:
    print(dp[N][M])
0