結果

問題 No.710 チーム戦
ユーザー pluto77pluto77
提出日時 2018-08-17 09:34:40
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 173 ms / 3,000 ms
コード長 299 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 77,120 KB
実行使用メモリ 80,252 KB
最終ジャッジ日時 2024-10-07 19:52:13
合計ジャッジ時間 4,926 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
79,136 KB
testcase_01 AC 82 ms
79,520 KB
testcase_02 AC 144 ms
79,236 KB
testcase_03 AC 150 ms
79,420 KB
testcase_04 AC 151 ms
79,404 KB
testcase_05 AC 147 ms
79,548 KB
testcase_06 AC 145 ms
79,632 KB
testcase_07 AC 145 ms
79,764 KB
testcase_08 AC 144 ms
79,936 KB
testcase_09 AC 146 ms
79,792 KB
testcase_10 AC 139 ms
79,764 KB
testcase_11 AC 142 ms
79,676 KB
testcase_12 AC 154 ms
79,524 KB
testcase_13 AC 151 ms
79,648 KB
testcase_14 AC 147 ms
79,368 KB
testcase_15 AC 142 ms
79,992 KB
testcase_16 AC 147 ms
79,896 KB
testcase_17 AC 141 ms
79,428 KB
testcase_18 AC 148 ms
79,260 KB
testcase_19 AC 151 ms
79,536 KB
testcase_20 AC 147 ms
79,408 KB
testcase_21 AC 139 ms
79,504 KB
testcase_22 AC 124 ms
79,544 KB
testcase_23 AC 87 ms
80,252 KB
testcase_24 AC 173 ms
79,280 KB
testcase_25 AC 77 ms
79,148 KB
testcase_26 AC 81 ms
79,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki710

n=int(raw_input())
dp=[float('inf') for i in xrange(100010)]
dp[0]=0
s=0
for i in xrange(n):
 a,b=map(int,raw_input().split())
 for j in xrange(s+1):
  dp[j]+=b
 s+=a
 for j in xrange(s,a-1,-1):
  dp[j]=min(dp[j],dp[j-a]-b)
res=s
for i in xrange(s+1):
 res=min(res,max(i,dp[i]))
print res
0