結果

問題 No.710 チーム戦
ユーザー togetogehattogetogehat
提出日時 2018-07-26 02:54:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 517 ms / 3,000 ms
コード長 262 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,472 KB
最終ジャッジ日時 2024-06-27 16:28:59
合計ジャッジ時間 17,363 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 506 ms
44,180 KB
testcase_01 AC 503 ms
44,436 KB
testcase_02 AC 515 ms
44,048 KB
testcase_03 AC 510 ms
44,176 KB
testcase_04 AC 515 ms
44,180 KB
testcase_05 AC 516 ms
44,436 KB
testcase_06 AC 512 ms
44,044 KB
testcase_07 AC 511 ms
44,180 KB
testcase_08 AC 511 ms
44,044 KB
testcase_09 AC 507 ms
43,920 KB
testcase_10 AC 508 ms
43,920 KB
testcase_11 AC 502 ms
44,048 KB
testcase_12 AC 506 ms
43,920 KB
testcase_13 AC 509 ms
44,048 KB
testcase_14 AC 515 ms
44,432 KB
testcase_15 AC 510 ms
44,312 KB
testcase_16 AC 510 ms
44,472 KB
testcase_17 AC 504 ms
44,156 KB
testcase_18 AC 511 ms
43,916 KB
testcase_19 AC 510 ms
44,232 KB
testcase_20 AC 506 ms
44,044 KB
testcase_21 AC 505 ms
44,316 KB
testcase_22 AC 514 ms
44,048 KB
testcase_23 AC 493 ms
44,432 KB
testcase_24 AC 517 ms
44,060 KB
testcase_25 AC 496 ms
44,048 KB
testcase_26 AC 498 ms
44,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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