結果

問題 No.185 和風
ユーザー RuteRute
提出日時 2020-03-04 22:21:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-22 01:55:31
合計ジャッジ時間 698 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
now = 0
flag = 0
for i in range(N):
    x,y = map(int,input().split())
    S = y-x
    if S<0:
        print(-1)
        flag += 1
        break
    else:
        if i == 0:
            now = y-x
        else:
            if S != now:
                print(-1)
                flag += 1
                break
if flag == 0:
    print(now)
0