結果

問題 No.710 チーム戦
ユーザー dpforestdpforest
提出日時 2018-06-30 00:25:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 3,000 ms
コード長 400 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 149,388 KB
最終ジャッジ日時 2024-07-01 00:36:41
合計ジャッジ時間 7,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
64,840 KB
testcase_01 AC 57 ms
67,044 KB
testcase_02 AC 261 ms
147,312 KB
testcase_03 AC 260 ms
146,940 KB
testcase_04 AC 264 ms
147,152 KB
testcase_05 AC 257 ms
149,104 KB
testcase_06 AC 259 ms
148,736 KB
testcase_07 AC 260 ms
148,144 KB
testcase_08 AC 258 ms
148,760 KB
testcase_09 AC 260 ms
148,820 KB
testcase_10 AC 251 ms
148,708 KB
testcase_11 AC 256 ms
148,560 KB
testcase_12 AC 262 ms
149,148 KB
testcase_13 AC 260 ms
149,388 KB
testcase_14 AC 258 ms
147,120 KB
testcase_15 AC 253 ms
147,472 KB
testcase_16 AC 263 ms
147,628 KB
testcase_17 AC 250 ms
147,636 KB
testcase_18 AC 259 ms
148,884 KB
testcase_19 AC 258 ms
146,876 KB
testcase_20 AC 263 ms
149,260 KB
testcase_21 AC 247 ms
148,360 KB
testcase_22 AC 191 ms
142,768 KB
testcase_23 AC 182 ms
145,088 KB
testcase_24 AC 270 ms
147,040 KB
testcase_25 AC 47 ms
63,864 KB
testcase_26 AC 48 ms
63,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
p = [tuple(map(int, input().split())) for _ in range(n)]

maxt = 10**5
dp = [float('inf')] * (maxt+1)
dp[0] = 0
for i in range(n):
  ai, bi = p[i]
  dp2 = dp[:]
  for i in range(maxt-1000+1):
    dp2[i] = dp[i] + bi
  for i in range(maxt-1000+1):
    dp2[i+ai] = min(dp2[i+ai], dp[i])
  dp = dp2

ans = float('inf')
for i in range(maxt+1):
  ans = min(ans, max(i,dp[i]))

print(ans)
0