結果

問題 No.458 異なる素数の和
ユーザー flippergoflippergo
提出日時 2024-10-05 23:29:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 548 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 418,560 KB
最終ジャッジ日時 2024-10-05 23:29:49
合計ジャッジ時間 11,526 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
73,472 KB
testcase_01 AC 618 ms
247,936 KB
testcase_02 AC 715 ms
285,984 KB
testcase_03 AC 286 ms
156,356 KB
testcase_04 AC 319 ms
157,184 KB
testcase_05 AC 1,065 ms
385,536 KB
testcase_06 AC 695 ms
279,096 KB
testcase_07 AC 96 ms
87,500 KB
testcase_08 WA -
testcase_09 AC 193 ms
110,720 KB
testcase_10 RE -
testcase_11 AC 1,154 ms
418,560 KB
testcase_12 AC 53 ms
65,536 KB
testcase_13 WA -
testcase_14 AC 53 ms
65,536 KB
testcase_15 AC 53 ms
65,920 KB
testcase_16 AC 238 ms
133,248 KB
testcase_17 AC 51 ms
66,976 KB
testcase_18 AC 51 ms
67,068 KB
testcase_19 AC 49 ms
65,316 KB
testcase_20 WA -
testcase_21 AC 52 ms
66,188 KB
testcase_22 AC 51 ms
66,436 KB
testcase_23 AC 56 ms
67,804 KB
testcase_24 AC 59 ms
68,272 KB
testcase_25 AC 53 ms
66,952 KB
testcase_26 AC 55 ms
66,604 KB
testcase_27 AC 654 ms
273,452 KB
testcase_28 AC 1,119 ms
415,592 KB
testcase_29 AC 134 ms
88,748 KB
testcase_30 AC 539 ms
225,024 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**4
dp = [[-INFTY for _ in range(M+1)] for _ in range(N+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