結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,628 KB
testcase_01 AC 54 ms
61,836 KB
testcase_02 AC 52 ms
62,424 KB
testcase_03 AC 51 ms
61,284 KB
testcase_04 AC 50 ms
63,124 KB
testcase_05 AC 38 ms
52,508 KB
testcase_06 AC 50 ms
62,872 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 r[0] > 0 and all(r[0]==ri for ri in r) else -1)
0