結果

問題 No.710 チーム戦
ユーザー convexineqconvexineq
提出日時 2021-03-18 17:00:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 588 ms / 3,000 ms
コード長 303 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 243,480 KB
最終ジャッジ日時 2024-11-16 20:22:33
合計ジャッジ時間 3,641 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,200 KB
testcase_02 AC 58 ms
72,192 KB
testcase_03 AC 55 ms
68,864 KB
testcase_04 AC 61 ms
73,852 KB
testcase_05 AC 59 ms
72,064 KB
testcase_06 AC 59 ms
71,936 KB
testcase_07 AC 57 ms
70,912 KB
testcase_08 AC 60 ms
72,432 KB
testcase_09 AC 64 ms
75,392 KB
testcase_10 AC 59 ms
70,528 KB
testcase_11 AC 61 ms
73,088 KB
testcase_12 AC 57 ms
71,936 KB
testcase_13 AC 57 ms
72,192 KB
testcase_14 AC 59 ms
71,680 KB
testcase_15 AC 57 ms
71,168 KB
testcase_16 AC 61 ms
72,832 KB
testcase_17 AC 63 ms
72,448 KB
testcase_18 AC 60 ms
73,308 KB
testcase_19 AC 60 ms
73,444 KB
testcase_20 AC 56 ms
70,656 KB
testcase_21 AC 60 ms
72,064 KB
testcase_22 AC 46 ms
59,008 KB
testcase_23 AC 45 ms
59,008 KB
testcase_24 AC 588 ms
243,480 KB
testcase_25 AC 38 ms
51,456 KB
testcase_26 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
M = 1<<30
dp = [0]
for _ in range(n):
    a,b = map(int,input().split())
    bmax = M
    ndp = []
    for x in dp:
        if x%M >= bmax: continue
        bmax = x%M
        ndp.append(x+a*M)
        ndp.append(x+b)
    dp = ndp
    dp.sort()

print(min(max(divmod(x,M)) for x in dp))
0