結果

問題 No.710 チーム戦
ユーザー NoneNone
提出日時 2021-10-11 15:36:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 3,000 ms
コード長 299 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 63,360 KB
最終ジャッジ日時 2024-09-15 13:34:03
合計ジャッジ時間 3,902 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
59,264 KB
testcase_01 AC 47 ms
59,776 KB
testcase_02 AC 104 ms
62,720 KB
testcase_03 AC 105 ms
62,720 KB
testcase_04 AC 107 ms
62,720 KB
testcase_05 AC 101 ms
62,336 KB
testcase_06 AC 104 ms
62,592 KB
testcase_07 AC 104 ms
62,720 KB
testcase_08 AC 104 ms
62,208 KB
testcase_09 AC 103 ms
62,720 KB
testcase_10 AC 103 ms
62,336 KB
testcase_11 AC 103 ms
63,360 KB
testcase_12 AC 106 ms
63,232 KB
testcase_13 AC 103 ms
62,464 KB
testcase_14 AC 104 ms
62,080 KB
testcase_15 AC 103 ms
62,848 KB
testcase_16 AC 104 ms
62,464 KB
testcase_17 AC 100 ms
62,080 KB
testcase_18 AC 105 ms
63,232 KB
testcase_19 AC 106 ms
62,976 KB
testcase_20 AC 102 ms
62,336 KB
testcase_21 AC 105 ms
63,232 KB
testcase_22 AC 81 ms
60,800 KB
testcase_23 AC 82 ms
60,800 KB
testcase_24 AC 102 ms
62,208 KB
testcase_25 AC 44 ms
58,624 KB
testcase_26 AC 45 ms
58,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
L=100000
INF=10**9
dp=[INF]*(L+10**3+10)
dp[0]=0
for _ in range(N):
    a,b=map(int, input().split())
    for w in range(L+1)[::-1]:
        if dp[w]<INF:
            dp[w+a]=min(dp[w],dp[w+a])
            dp[w]+=b
res=INF
for w in range(L+1):
    res=min(res,max(w,dp[w]))
print(res)
0