結果

問題 No.710 チーム戦
ユーザー togetogehattogetogehat
提出日時 2018-07-26 22:29:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 554 ms / 3,000 ms
コード長 310 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,836 KB
最終ジャッジ日時 2024-07-01 03:28:26
合計ジャッジ時間 15,821 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
44,576 KB
testcase_01 AC 530 ms
44,836 KB
testcase_02 AC 531 ms
44,452 KB
testcase_03 AC 537 ms
44,328 KB
testcase_04 AC 538 ms
44,448 KB
testcase_05 AC 523 ms
44,448 KB
testcase_06 AC 527 ms
44,576 KB
testcase_07 AC 525 ms
44,192 KB
testcase_08 AC 525 ms
44,320 KB
testcase_09 AC 522 ms
44,316 KB
testcase_10 AC 525 ms
44,444 KB
testcase_11 AC 521 ms
44,316 KB
testcase_12 AC 528 ms
44,316 KB
testcase_13 AC 521 ms
44,452 KB
testcase_14 AC 521 ms
44,316 KB
testcase_15 AC 526 ms
44,196 KB
testcase_16 AC 526 ms
44,576 KB
testcase_17 AC 528 ms
44,576 KB
testcase_18 AC 535 ms
44,704 KB
testcase_19 AC 554 ms
44,576 KB
testcase_20 AC 533 ms
44,184 KB
testcase_21 AC 537 ms
44,588 KB
testcase_22 AC 546 ms
44,580 KB
testcase_23 AC 522 ms
44,440 KB
testcase_24 AC 541 ms
44,708 KB
testcase_25 AC 524 ms
44,568 KB
testcase_26 AC 522 ms
44,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n = int(input())
A, B = map(np.array,
        zip(*(map(int, input().split()) for _ in range(n))))
m = max(A[A<=B].sum(), B[B<A].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