結果

問題 No.904 サメトロ
ユーザー roarisroaris
提出日時 2020-12-10 12:26:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 75,564 KB
最終ジャッジ日時 2024-09-19 20:09:42
合計ジャッジ時間 2,798 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,180 KB
testcase_01 AC 42 ms
61,420 KB
testcase_02 AC 52 ms
63,632 KB
testcase_03 AC 40 ms
60,800 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 41 ms
62,276 KB
testcase_08 WA -
testcase_09 AC 32 ms
52,368 KB
testcase_10 AC 46 ms
61,136 KB
testcase_11 AC 42 ms
62,624 KB
testcase_12 WA -
testcase_13 AC 41 ms
61,756 KB
testcase_14 AC 40 ms
60,552 KB
testcase_15 WA -
testcase_16 AC 43 ms
62,168 KB
testcase_17 WA -
testcase_18 AC 34 ms
52,948 KB
testcase_19 AC 42 ms
62,552 KB
testcase_20 AC 33 ms
52,400 KB
testcase_21 AC 42 ms
60,900 KB
testcase_22 AC 46 ms
65,512 KB
testcase_23 AC 41 ms
61,336 KB
testcase_24 AC 46 ms
62,100 KB
testcase_25 AC 34 ms
52,916 KB
testcase_26 AC 41 ms
61,128 KB
testcase_27 AC 75 ms
75,564 KB
testcase_28 AC 32 ms
53,376 KB
testcase_29 AC 33 ms
52,192 KB
testcase_30 AC 32 ms
52,008 KB
testcase_31 WA -
testcase_32 AC 32 ms
52,756 KB
testcase_33 AC 32 ms
52,380 KB
testcase_34 AC 34 ms
51,752 KB
testcase_35 AC 37 ms
61,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A, B = [], []

for _ in range(N-1):
    Ai, Bi = map(int, input().split())
    A.append(Ai)
    B.append(Bi)

ans = 0
SA, SB = sum(A), sum(B)

for A1 in range(SB+1):
    B1 = SA+A1-SB
    
    for i in range(N-1):
        if A[i]>B1+SB-B[i]:
            break
    else:
        ans += 1

print(ans)
0