結果

問題 No.185 和風
ユーザー miya145592miya145592
提出日時 2023-05-03 18:34:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 1,000 ms
コード長 202 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 62,976 KB
最終ジャッジ日時 2024-11-21 20:09:03
合計ジャッジ時間 1,182 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
52,992 KB
testcase_01 AC 59 ms
62,848 KB
testcase_02 AC 58 ms
62,720 KB
testcase_03 AC 58 ms
62,848 KB
testcase_04 AC 57 ms
62,848 KB
testcase_05 AC 40 ms
52,736 KB
testcase_06 AC 58 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
XY = [list(map(int, input().split())) for _ in range(N)]
A = XY[0][1]-XY[0][0]
if A<=0:
    print(-1)
    exit()
for x, y in XY:
    if A!=y-x:
        print(-1)
        exit()
print(A)
0