結果

問題 No.1120 Strange Teacher
ユーザー brthyyjpbrthyyjp
提出日時 2020-08-02 01:44:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 1,000 ms
コード長 538 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 103,840 KB
最終ジャッジ日時 2024-07-16 00:49:21
合計ジャッジ時間 3,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,632 KB
testcase_01 AC 41 ms
52,752 KB
testcase_02 AC 42 ms
59,084 KB
testcase_03 AC 48 ms
65,232 KB
testcase_04 AC 87 ms
103,688 KB
testcase_05 AC 92 ms
103,452 KB
testcase_06 AC 87 ms
103,836 KB
testcase_07 AC 86 ms
103,480 KB
testcase_08 AC 86 ms
103,440 KB
testcase_09 AC 38 ms
52,332 KB
testcase_10 AC 85 ms
103,636 KB
testcase_11 AC 85 ms
103,524 KB
testcase_12 AC 85 ms
103,276 KB
testcase_13 AC 85 ms
103,252 KB
testcase_14 AC 85 ms
103,236 KB
testcase_15 AC 85 ms
103,464 KB
testcase_16 AC 87 ms
103,840 KB
testcase_17 AC 85 ms
103,560 KB
testcase_18 AC 37 ms
52,844 KB
testcase_19 AC 87 ms
101,064 KB
testcase_20 AC 38 ms
52,428 KB
testcase_21 AC 38 ms
52,188 KB
testcase_22 AC 38 ms
53,496 KB
testcase_23 AC 38 ms
53,084 KB
testcase_24 AC 80 ms
101,660 KB
testcase_25 AC 38 ms
52,232 KB
testcase_26 AC 38 ms
52,336 KB
testcase_27 AC 38 ms
53,932 KB
testcase_28 AC 37 ms
52,884 KB
testcase_29 AC 37 ms
52,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

if n == 2:
    if B[0]-A[0] != A[1]-B[1]:
        print(-1)
        exit()
    else:
        print(abs(B[0]-A[0]))
        exit()

S = 0
for a, b in zip(A, B):
    S += a-b
#print(S)
if S%(n-2) == 0:
    x = S//(n-2)
    for a, b in zip(A, B):
        if b-a+x < 0:
            print(-1)
            exit()
        else:
            if (b-a+x)%2 != 0:
                print(-1)
                exit()
    else:
        print(x)
else:
    print(-1)
0