結果

問題 No.710 チーム戦
ユーザー convexineqconvexineq
提出日時 2021-03-18 17:18:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 3,000 ms
コード長 277 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-11-16 20:35:02
合計ジャッジ時間 3,835 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
59,776 KB
testcase_01 AC 51 ms
60,928 KB
testcase_02 AC 108 ms
64,000 KB
testcase_03 AC 116 ms
64,512 KB
testcase_04 AC 115 ms
63,488 KB
testcase_05 AC 108 ms
64,640 KB
testcase_06 AC 108 ms
64,768 KB
testcase_07 AC 103 ms
64,768 KB
testcase_08 AC 107 ms
64,768 KB
testcase_09 AC 104 ms
64,640 KB
testcase_10 AC 102 ms
64,512 KB
testcase_11 AC 95 ms
63,872 KB
testcase_12 AC 104 ms
64,512 KB
testcase_13 AC 106 ms
64,128 KB
testcase_14 AC 102 ms
63,872 KB
testcase_15 AC 109 ms
64,640 KB
testcase_16 AC 102 ms
64,512 KB
testcase_17 AC 107 ms
63,616 KB
testcase_18 AC 104 ms
64,768 KB
testcase_19 AC 99 ms
64,640 KB
testcase_20 AC 98 ms
64,128 KB
testcase_21 AC 101 ms
64,512 KB
testcase_22 AC 91 ms
63,104 KB
testcase_23 AC 91 ms
61,440 KB
testcase_24 AC 120 ms
65,152 KB
testcase_25 AC 38 ms
51,840 KB
testcase_26 AC 39 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
M = 1<<30
INF = N = n*1000+1
dp = [INF]*N
dp[0] = 0
for _ in range(n):
    a,b = map(int,input().split())
    for i in range(N)[::-1]:
        dp[i] = min(dp[i]+b,dp[i-a] if i >= a else INF)
ans = N
for i in range(N):
    ans = min(ans,max(i,dp[i]))
print(ans)
0