結果

問題 No.185 和風
ユーザー convexineqconvexineq
提出日時 2020-12-15 21:09:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 144 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 63,024 KB
最終ジャッジ日時 2024-09-20 02:14:34
合計ジャッジ時間 1,253 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,304 KB
testcase_01 AC 50 ms
62,396 KB
testcase_02 AC 48 ms
63,024 KB
testcase_03 AC 47 ms
62,788 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 48 ms
62,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
r = [0]*n
for i in range(n):
    a,b = map(int,input().split())
    r[i] = b-a
print(r[0] if all(r[0]==ri for ri in r) else -1)
0