結果

問題 No.185 和風
ユーザー vwxyzvwxyz
提出日時 2022-04-18 21:32:15
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 46 ms / 1,000 ms
コード長 285 bytes
コンパイル時間 846 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-12-30 02:08:22
合計ジャッジ時間 1,469 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
11,264 KB
testcase_01 AC 44 ms
11,136 KB
testcase_02 AC 43 ms
11,136 KB
testcase_03 AC 42 ms
11,264 KB
testcase_04 AC 40 ms
11,136 KB
testcase_05 AC 42 ms
11,264 KB
testcase_06 AC 46 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from typing import Counter
readline=sys.stdin.readline

N=int(readline())
X,Y=map(int,readline().split())
ans=Y-X
if ans>0:
    for _ in range(N-1):
        X,Y=map(int,readline().split())
        if X+ans!=Y:
            ans=-1
            break
else:
    ans=-1
print(ans)
0