結果

問題 No.904 サメトロ
ユーザー H3PO4H3PO4
提出日時 2022-07-17 09:24:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 835 ms / 1,000 ms
コード長 339 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 78,568 KB
最終ジャッジ日時 2024-06-29 10:56:24
合計ジャッジ時間 22,089 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 835 ms
44,324 KB
testcase_01 AC 515 ms
44,116 KB
testcase_02 AC 516 ms
44,324 KB
testcase_03 AC 513 ms
44,204 KB
testcase_04 AC 529 ms
44,324 KB
testcase_05 AC 525 ms
44,068 KB
testcase_06 AC 516 ms
44,064 KB
testcase_07 AC 509 ms
44,080 KB
testcase_08 AC 516 ms
44,072 KB
testcase_09 AC 520 ms
43,944 KB
testcase_10 AC 508 ms
44,452 KB
testcase_11 AC 511 ms
44,456 KB
testcase_12 AC 517 ms
44,200 KB
testcase_13 AC 509 ms
44,452 KB
testcase_14 AC 514 ms
44,456 KB
testcase_15 AC 518 ms
44,072 KB
testcase_16 AC 508 ms
44,072 KB
testcase_17 AC 513 ms
44,320 KB
testcase_18 AC 507 ms
44,076 KB
testcase_19 AC 510 ms
44,324 KB
testcase_20 AC 508 ms
43,948 KB
testcase_21 AC 518 ms
44,328 KB
testcase_22 AC 524 ms
44,708 KB
testcase_23 AC 520 ms
44,196 KB
testcase_24 AC 512 ms
44,456 KB
testcase_25 AC 516 ms
44,336 KB
testcase_26 AC 513 ms
44,332 KB
testcase_27 AC 514 ms
44,704 KB
testcase_28 AC 518 ms
44,704 KB
testcase_29 AC 513 ms
44,072 KB
testcase_30 AC 516 ms
44,712 KB
testcase_31 AC 531 ms
44,328 KB
testcase_32 AC 528 ms
44,456 KB
testcase_33 AC 519 ms
44,196 KB
testcase_34 AC 515 ms
44,452 KB
testcase_35 AC 510 ms
78,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
AB = np.array(tuple(tuple(map(int, input().split())) for _ in range(N - 1)))

a1_max = np.sum(AB[:, 1])
b1_max = np.sum(AB[:, 0])
other_sum_max = np.max(np.sum(AB, axis=1))
a1_min = max(0, other_sum_max - b1_max)
b1_min = max(0, other_sum_max - a1_max)
print(min(a1_max - a1_min, b1_max - b1_min) + 1)
0