結果

問題 No.710 チーム戦
ユーザー togetogehattogetogehat
提出日時 2018-07-26 03:03:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 524 ms / 3,000 ms
コード長 278 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,460 KB
最終ジャッジ日時 2024-06-27 20:11:46
合計ジャッジ時間 16,502 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 521 ms
44,072 KB
testcase_01 AC 524 ms
44,324 KB
testcase_02 AC 508 ms
44,456 KB
testcase_03 AC 505 ms
44,192 KB
testcase_04 AC 507 ms
44,196 KB
testcase_05 AC 511 ms
44,200 KB
testcase_06 AC 505 ms
44,452 KB
testcase_07 AC 506 ms
43,936 KB
testcase_08 AC 503 ms
44,340 KB
testcase_09 AC 505 ms
44,064 KB
testcase_10 AC 498 ms
44,200 KB
testcase_11 AC 498 ms
43,944 KB
testcase_12 AC 500 ms
44,084 KB
testcase_13 AC 499 ms
44,456 KB
testcase_14 AC 496 ms
44,068 KB
testcase_15 AC 510 ms
44,200 KB
testcase_16 AC 506 ms
43,952 KB
testcase_17 AC 504 ms
43,944 KB
testcase_18 AC 506 ms
43,820 KB
testcase_19 AC 514 ms
44,320 KB
testcase_20 AC 503 ms
44,456 KB
testcase_21 AC 512 ms
44,332 KB
testcase_22 AC 521 ms
44,196 KB
testcase_23 AC 492 ms
44,456 KB
testcase_24 AC 522 ms
44,460 KB
testcase_25 AC 504 ms
43,944 KB
testcase_26 AC 504 ms
44,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n = int(input())
A, B = zip(*(map(int, input().split()) for _ in range(n))) 
m = np.minimum(A, B).sum()
dp = np.zeros(m+1, dtype='int32')
for a, b in zip(A, B):
    dp += b
    dp[a:] = np.minimum(dp[a:], dp[:-a]-b)
print(np.maximum(np.arange(m+1), dp).min())
0