結果

問題 No.904 サメトロ
ユーザー ttrttr
提出日時 2020-02-03 21:51:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 348 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,820 KB
最終ジャッジ日時 2024-09-19 06:59:13
合計ジャッジ時間 6,228 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
17,820 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 255 ms
10,752 KB
testcase_03 AC 42 ms
10,624 KB
testcase_04 AC 262 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 411 ms
10,752 KB
testcase_07 AC 38 ms
10,752 KB
testcase_08 AC 745 ms
10,624 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 73 ms
10,624 KB
testcase_11 AC 49 ms
10,752 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 32 ms
10,752 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 27 ms
10,624 KB
testcase_16 AC 66 ms
10,752 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 AC 25 ms
10,752 KB
testcase_19 AC 36 ms
10,752 KB
testcase_20 AC 26 ms
10,752 KB
testcase_21 AC 39 ms
10,752 KB
testcase_22 AC 528 ms
10,752 KB
testcase_23 AC 56 ms
10,624 KB
testcase_24 AC 172 ms
10,752 KB
testcase_25 AC 27 ms
10,752 KB
testcase_26 AC 55 ms
10,752 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = [[int(l) for l in input().split()] for _ in range(N-1)]

A = 0
B = 0
for t in L:
    A += t[0]
    B += t[1]

ans = 0
for i in range(B+1):
    j = A+i-B
    if j < 0:
        continue
    flag = True
    for t in L:
        if t[0] > B+j-t[1]:
            flag = False
            break
    if flag:
        ans += 1
print(ans)
0