結果

問題 No.185 和風
ユーザー ddsyg1ddsyg1
提出日時 2019-01-15 16:24:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 1,000 ms
コード長 184 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 61,696 KB
最終ジャッジ日時 2024-06-25 03:09:31
合計ジャッジ時間 1,006 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,376 KB
testcase_01 AC 53 ms
61,440 KB
testcase_02 AC 52 ms
61,184 KB
testcase_03 AC 52 ms
61,696 KB
testcase_04 AC 51 ms
61,696 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 51 ms
61,056 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] <= 0):
	print("-1")
elif(x[0] == x[N-1]):
	print(x[0])
else:
	print("-1")
0