結果

問題 No.904 サメトロ
ユーザー roarisroaris
提出日時 2019-11-09 20:42:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 135 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-09-15 04:51:12
合計ジャッジ時間 3,073 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19 WA * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A, B = 0, 0

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

print(min(A+1, B+1))
0