結果

問題 No.458 異なる素数の和
ユーザー flippergoflippergo
提出日時 2024-10-05 23:48:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,300 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 419,696 KB
最終ジャッジ日時 2024-10-05 23:48:26
合計ジャッジ時間 11,932 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
74,572 KB
testcase_01 AC 661 ms
247,832 KB
testcase_02 AC 782 ms
285,960 KB
testcase_03 AC 308 ms
156,400 KB
testcase_04 AC 336 ms
156,504 KB
testcase_05 AC 1,180 ms
386,184 KB
testcase_06 AC 759 ms
279,148 KB
testcase_07 AC 99 ms
87,420 KB
testcase_08 AC 1,169 ms
387,148 KB
testcase_09 AC 183 ms
110,624 KB
testcase_10 AC 54 ms
67,188 KB
testcase_11 AC 1,300 ms
419,696 KB
testcase_12 AC 55 ms
66,664 KB
testcase_13 AC 55 ms
66,848 KB
testcase_14 AC 55 ms
66,080 KB
testcase_15 AC 56 ms
67,440 KB
testcase_16 AC 243 ms
133,832 KB
testcase_17 AC 58 ms
68,188 KB
testcase_18 AC 57 ms
67,452 KB
testcase_19 AC 68 ms
66,648 KB
testcase_20 AC 62 ms
69,384 KB
testcase_21 AC 55 ms
67,092 KB
testcase_22 AC 56 ms
67,228 KB
testcase_23 AC 60 ms
68,896 KB
testcase_24 AC 63 ms
70,672 KB
testcase_25 AC 57 ms
67,220 KB
testcase_26 AC 58 ms
68,156 KB
testcase_27 AC 735 ms
274,020 KB
testcase_28 AC 1,270 ms
414,788 KB
testcase_29 AC 135 ms
88,748 KB
testcase_30 AC 550 ms
225,664 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)]
for i in range(N+1):
    dp[i][0] = 0
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