結果

問題 No.185 和風
ユーザー zombietan
提出日時 2016-05-03 03:40:36
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 256 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-05 03:21:47
合計ジャッジ時間 814 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = [list(map(int, input().split())) for _ in range(n)]
f = s[0][1] - s[0][0]
if f <= 0:
    print(-1)
else:
    for x in s[1:]:
        d = x[1] - x[0]
        if d != f:
            print(-1)
            break
    else:
        print(d)
0