結果

問題 No.185 和風
ユーザー あかりきあかりき
提出日時 2021-02-09 22:07:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 205 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 64,092 KB
最終ジャッジ日時 2024-07-07 04:05:59
合計ジャッジ時間 923 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,892 KB
testcase_01 AC 50 ms
63,888 KB
testcase_02 AC 52 ms
63,932 KB
testcase_03 AC 50 ms
63,896 KB
testcase_04 AC 48 ms
63,904 KB
testcase_05 AC 35 ms
54,024 KB
testcase_06 AC 47 ms
64,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=[list(map(int,input().split())) for i in range(n)]
ans=[]
for i in range(n):
  ans.append(l[i][1]-l[i][0])
ans=list(set(ans))
if len(ans)==1 and ans[0]>0:
  print(ans[0])
else:
  print(-1)
0