結果

問題 No.2232 Miser's Gift
ユーザー flippergoflippergo
提出日時 2024-09-21 15:00:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 746 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 157,312 KB
最終ジャッジ日時 2024-09-21 15:00:47
合計ジャッジ時間 18,069 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 44 ms
52,352 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 352 ms
157,124 KB
testcase_04 AC 374 ms
156,936 KB
testcase_05 AC 116 ms
83,968 KB
testcase_06 AC 44 ms
52,352 KB
testcase_07 AC 83 ms
78,936 KB
testcase_08 AC 395 ms
157,004 KB
testcase_09 AC 459 ms
157,152 KB
testcase_10 AC 396 ms
157,056 KB
testcase_11 AC 467 ms
156,984 KB
testcase_12 AC 457 ms
156,880 KB
testcase_13 AC 372 ms
157,088 KB
testcase_14 AC 363 ms
156,928 KB
testcase_15 AC 339 ms
157,200 KB
testcase_16 AC 371 ms
157,224 KB
testcase_17 AC 336 ms
157,056 KB
testcase_18 AC 336 ms
156,968 KB
testcase_19 AC 368 ms
157,264 KB
testcase_20 AC 367 ms
157,312 KB
testcase_21 AC 369 ms
157,268 KB
testcase_22 AC 366 ms
157,176 KB
testcase_23 AC 489 ms
157,056 KB
testcase_24 AC 478 ms
156,936 KB
testcase_25 AC 511 ms
156,976 KB
testcase_26 AC 481 ms
157,056 KB
testcase_27 AC 483 ms
156,928 KB
testcase_28 AC 361 ms
157,040 KB
testcase_29 AC 386 ms
156,960 KB
testcase_30 AC 431 ms
156,896 KB
testcase_31 AC 361 ms
156,948 KB
testcase_32 AC 359 ms
157,184 KB
testcase_33 AC 368 ms
157,016 KB
testcase_34 AC 340 ms
157,060 KB
testcase_35 AC 340 ms
156,848 KB
testcase_36 AC 366 ms
157,172 KB
testcase_37 AC 344 ms
156,968 KB
testcase_38 AC 58 ms
64,896 KB
testcase_39 AC 59 ms
65,152 KB
testcase_40 AC 67 ms
65,152 KB
testcase_41 AC 67 ms
65,024 KB
testcase_42 AC 69 ms
65,408 KB
testcase_43 AC 68 ms
65,152 KB
testcase_44 AC 70 ms
65,176 KB
testcase_45 AC 73 ms
65,152 KB
testcase_46 AC 94 ms
65,408 KB
testcase_47 AC 70 ms
65,408 KB
testcase_48 AC 60 ms
62,592 KB
testcase_49 AC 58 ms
62,336 KB
testcase_50 AC 60 ms
62,592 KB
testcase_51 AC 60 ms
62,464 KB
testcase_52 AC 58 ms
62,336 KB
testcase_53 AC 54 ms
62,208 KB
testcase_54 AC 52 ms
62,080 KB
testcase_55 AC 51 ms
62,720 KB
testcase_56 AC 52 ms
62,208 KB
testcase_57 AC 51 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W = map(int,input().split())
A = [0]+[list(map(int,input().split())) for _ in range(N)]
dp = [[0 for _ in range(W+1)] for _ in range(N+1)]
for j in range(1,W+1):
    dp[1][j] = A[1][1] if A[1][0]<=j else 0
for i in range(2,N+1):
    for j in range(1,W+1):
        dp[i][j] = dp[i-1][j]
        if j>=A[i][0]:
            dp[i][j] = max(dp[i][j],dp[i-1][j-A[i][0]]+A[i][1])
for x in range(1,W+1):
    print(dp[N][W]+1-dp[N][W-x])
0