結果

問題 No.185 和風
ユーザー ddsyg1ddsyg1
提出日時 2019-01-15 16:15:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 152 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 63,216 KB
最終ジャッジ日時 2024-06-25 02:47:27
合計ジャッジ時間 1,068 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 57 ms
61,568 KB
testcase_02 AC 57 ms
60,928 KB
testcase_03 AC 52 ms
61,184 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 53 ms
61,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = []
for i in range(N):
	a, b = map(int, input().split())
	x.append(b - a)
x.sort()
if(x[0] == x[N-1]):
	print(x[0])
else:
	print(-1)
0