結果

問題 No.904 サメトロ
ユーザー AT274_AT274_
提出日時 2019-10-11 22:56:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 1,000 ms
コード長 428 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 67,136 KB
最終ジャッジ日時 2024-11-25 08:58:02
合計ジャッジ時間 2,979 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,628 KB
testcase_01 AC 41 ms
59,552 KB
testcase_02 AC 60 ms
63,040 KB
testcase_03 AC 45 ms
60,252 KB
testcase_04 AC 49 ms
61,416 KB
testcase_05 AC 36 ms
52,312 KB
testcase_06 AC 57 ms
62,220 KB
testcase_07 AC 44 ms
59,976 KB
testcase_08 AC 70 ms
61,928 KB
testcase_09 AC 37 ms
52,456 KB
testcase_10 AC 46 ms
60,480 KB
testcase_11 AC 44 ms
59,520 KB
testcase_12 AC 40 ms
58,040 KB
testcase_13 AC 44 ms
60,040 KB
testcase_14 AC 44 ms
60,204 KB
testcase_15 AC 41 ms
58,036 KB
testcase_16 AC 44 ms
59,808 KB
testcase_17 AC 37 ms
52,352 KB
testcase_18 AC 36 ms
52,540 KB
testcase_19 AC 46 ms
60,128 KB
testcase_20 AC 36 ms
53,364 KB
testcase_21 AC 43 ms
60,136 KB
testcase_22 AC 61 ms
61,348 KB
testcase_23 AC 44 ms
60,116 KB
testcase_24 AC 53 ms
61,052 KB
testcase_25 AC 36 ms
53,212 KB
testcase_26 AC 43 ms
60,836 KB
testcase_27 AC 107 ms
67,136 KB
testcase_28 AC 37 ms
52,060 KB
testcase_29 AC 38 ms
52,732 KB
testcase_30 AC 33 ms
52,584 KB
testcase_31 AC 35 ms
52,672 KB
testcase_32 AC 34 ms
52,448 KB
testcase_33 AC 34 ms
52,764 KB
testcase_34 AC 32 ms
52,224 KB
testcase_35 AC 38 ms
59,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A_sum, B_sum = 0, 0
X = []
for i in range(N - 1):
    A, B = map(int,input().split())
    X.append([A, B])
    A_sum += A
    B_sum += B


ans = 0
for nb in range(A_sum, -1, -1):
    na = B_sum + nb - A_sum
    if na < 0 or nb < 0:
        continue
    for a, b in X:
        if (B_sum + nb - b) < a:
            break

        if (A_sum + na - a) < b:
            break
    else:
        ans += 1


print(ans)
0