結果

問題 No.710 チーム戦
ユーザー 👑 rin204rin204
提出日時 2022-11-11 14:55:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 199 ms / 3,000 ms
コード長 395 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 145,064 KB
最終ジャッジ日時 2024-09-13 10:36:49
合計ジャッジ時間 5,798 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
64,996 KB
testcase_01 AC 59 ms
65,504 KB
testcase_02 AC 198 ms
143,996 KB
testcase_03 AC 199 ms
143,288 KB
testcase_04 AC 199 ms
143,460 KB
testcase_05 AC 193 ms
143,692 KB
testcase_06 AC 196 ms
144,536 KB
testcase_07 AC 198 ms
143,720 KB
testcase_08 AC 197 ms
143,244 KB
testcase_09 AC 195 ms
143,196 KB
testcase_10 AC 192 ms
142,768 KB
testcase_11 AC 194 ms
144,112 KB
testcase_12 AC 195 ms
144,196 KB
testcase_13 AC 198 ms
143,208 KB
testcase_14 AC 198 ms
143,860 KB
testcase_15 AC 195 ms
143,504 KB
testcase_16 AC 199 ms
143,928 KB
testcase_17 AC 193 ms
143,844 KB
testcase_18 AC 194 ms
143,912 KB
testcase_19 AC 196 ms
143,044 KB
testcase_20 AC 197 ms
143,468 KB
testcase_21 AC 198 ms
143,856 KB
testcase_22 AC 187 ms
141,776 KB
testcase_23 AC 186 ms
142,604 KB
testcase_24 AC 197 ms
145,064 KB
testcase_25 AC 45 ms
60,912 KB
testcase_26 AC 48 ms
61,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

inf = 1 << 60
ma = 10 ** 5
dp = [inf] * (ma + 1)
dp[0] = 0
for _ in range(n):
    a, b = map(int, input().split())
    ndp = [inf] * (ma + 1)
    for i in range(a, ma + 1):
        ndp[i] = min(ndp[i], dp[i - a])
    for i in range(ma + 1):
        ndp[i] = min(ndp[i], dp[i] + b)
    dp = ndp

ans = 1 << 60
for i in range(ma + 1):
    ans = min(ans, max(i, dp[i]))
print(ans)
0