結果

問題 No.54 Happy Hallowe'en
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-01 14:47:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 319 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 77,612 KB
最終ジャッジ日時 2024-10-10 04:46:03
合計ジャッジ時間 1,967 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,828 KB
testcase_01 AC 46 ms
58,504 KB
testcase_02 AC 39 ms
58,204 KB
testcase_03 WA -
testcase_04 AC 74 ms
74,184 KB
testcase_05 AC 80 ms
76,912 KB
testcase_06 AC 82 ms
77,220 KB
testcase_07 AC 83 ms
77,548 KB
testcase_08 AC 85 ms
77,508 KB
testcase_09 AC 88 ms
77,204 KB
testcase_10 AC 41 ms
58,504 KB
testcase_11 AC 41 ms
59,084 KB
testcase_12 AC 82 ms
77,136 KB
testcase_13 AC 86 ms
77,612 KB
testcase_14 AC 41 ms
58,508 KB
testcase_15 AC 40 ms
57,688 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
VT = [list(map(int,input().split())) for i in range(n)]
VT.sort(key=lambda x: x[0]+x[1])

dp = [0]*(2*10**4+5)
dp[0] = 1
for v,t in VT:
    for i in range(t)[::-1]:
        if dp[i]:
            dp[i+v] = 1
            break

ans = 0
for i in range(2*10**4+5):
    if dp[i]:
        ans = i
print(ans)
0