結果

問題 No.185 和風
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-10 11:40:12
言語 Python2
(2.7.18)
結果
AC  
実行時間 31 ms / 1,000 ms
コード長 175 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-07-05 21:23:01
合計ジャッジ時間 1,349 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
6,400 KB
testcase_01 AC 27 ms
6,528 KB
testcase_02 AC 30 ms
6,272 KB
testcase_03 AC 29 ms
6,528 KB
testcase_04 AC 29 ms
6,528 KB
testcase_05 AC 20 ms
6,272 KB
testcase_06 AC 31 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
XY=[map(int,raw_input().split()) for i in range(N)]
ans=XY[0][1]-XY[0][0]
if ans <=0:
    ans=-1
for x,y in XY:
    if y-x != ans:
        ans=-1
print ans
0