結果

問題 No.710 チーム戦
ユーザー qibqib
提出日時 2022-12-27 00:00:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 638 ms / 3,000 ms
コード長 317 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 211,732 KB
最終ジャッジ日時 2024-11-21 10:58:20
合計ジャッジ時間 11,684 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 47 ms
51,712 KB
testcase_02 AC 457 ms
151,928 KB
testcase_03 AC 461 ms
153,784 KB
testcase_04 AC 508 ms
165,568 KB
testcase_05 AC 449 ms
145,660 KB
testcase_06 AC 467 ms
151,984 KB
testcase_07 AC 488 ms
159,076 KB
testcase_08 AC 491 ms
157,084 KB
testcase_09 AC 482 ms
158,708 KB
testcase_10 AC 413 ms
142,380 KB
testcase_11 AC 461 ms
154,288 KB
testcase_12 AC 500 ms
164,776 KB
testcase_13 AC 469 ms
158,268 KB
testcase_14 AC 479 ms
157,000 KB
testcase_15 AC 450 ms
139,748 KB
testcase_16 AC 492 ms
164,188 KB
testcase_17 AC 417 ms
144,840 KB
testcase_18 AC 480 ms
153,856 KB
testcase_19 AC 502 ms
161,516 KB
testcase_20 AC 459 ms
152,304 KB
testcase_21 AC 482 ms
159,256 KB
testcase_22 AC 52 ms
59,776 KB
testcase_23 AC 51 ms
59,648 KB
testcase_24 AC 638 ms
211,732 KB
testcase_25 AC 44 ms
52,224 KB
testcase_26 AC 43 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

dp = {}
dp[0] = 0
s = 0
for _ in range(n):
  a, b = map(int, input().split())
  s += b
  ndp = {}
  for k, v in dp.items():
    ndp[k] = max(ndp.get(k, 0), v)
    ndp[k + a] = max(ndp.get(k + a, 0), v + b)
  dp = ndp

ans = 1 << 60
for k, v in dp.items():
  ans = min(ans, max(k, s - v))

print(ans)
0