結果

問題 No.185 和風
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-30 20:33:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 1,000 ms
コード長 233 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 61,312 KB
最終ジャッジ日時 2024-06-08 20:39:05
合計ジャッジ時間 1,393 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,736 KB
testcase_01 AC 58 ms
61,056 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 38 ms
51,328 KB
testcase_04 AC 55 ms
61,312 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 53 ms
60,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
for i in range(n):
    x,y = map(int,input().split())
    if i == 0:
        t = y-x
        continue
    if y-x != t:
        print(-1)
        exit()

    t = y-x

if t < 1:
    print(-1)
else:
    print(t)
    
    
0