結果

問題 No.904 サメトロ
ユーザー 12354865271235486527
提出日時 2019-12-19 09:12:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 419 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,824 KB
最終ジャッジ日時 2024-07-07 00:54:05
合計ジャッジ時間 6,486 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
17,696 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 253 ms
10,752 KB
testcase_03 AC 40 ms
10,752 KB
testcase_04 AC 245 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 384 ms
10,752 KB
testcase_07 AC 35 ms
10,880 KB
testcase_08 AC 678 ms
10,752 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 64 ms
10,624 KB
testcase_11 AC 48 ms
10,752 KB
testcase_12 AC 25 ms
10,752 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 64 ms
10,624 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 AC 24 ms
10,752 KB
testcase_19 AC 33 ms
10,752 KB
testcase_20 AC 26 ms
10,752 KB
testcase_21 AC 39 ms
10,752 KB
testcase_22 AC 526 ms
10,624 KB
testcase_23 AC 58 ms
10,624 KB
testcase_24 AC 158 ms
10,752 KB
testcase_25 AC 26 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())
ent = [0] * (N - 1)
ext = [0] * (N - 1)
sum_ent = 0
sum_ext = 0
for i in range(N-1):
    ent[i], ext[i] = map(int, input().split())
    sum_ent += ent[i]
    sum_ext += ext[i]
ans = 0
for A in range(sum_ext + 1):
    sum_A = A + sum_ent
    if sum_A - sum_ext >= 0:
        for i in range(N-1):
            if ent[i] > sum_A - ext[i]:
                break
        else:
            ans += 1
print(ans)
0