結果

問題 No.185 和風
ユーザー zombietanzombietan
提出日時 2016-05-03 03:40:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 256 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-04-15 09:53:11
合計ジャッジ時間 918 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,880 KB
testcase_01 AC 39 ms
11,008 KB
testcase_02 AC 36 ms
10,880 KB
testcase_03 AC 37 ms
11,008 KB
testcase_04 AC 36 ms
11,008 KB
testcase_05 AC 35 ms
10,752 KB
testcase_06 AC 37 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

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