結果

問題 No.1120 Strange Teacher
ユーザー brthyyjpbrthyyjp
提出日時 2020-08-02 01:38:22
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 407 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 103,892 KB
最終ジャッジ日時 2024-07-16 00:37:54
合計ジャッジ時間 4,124 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,692 KB
testcase_01 AC 39 ms
52,668 KB
testcase_02 AC 42 ms
59,160 KB
testcase_03 AC 48 ms
66,048 KB
testcase_04 AC 87 ms
103,256 KB
testcase_05 AC 87 ms
103,468 KB
testcase_06 AC 87 ms
103,500 KB
testcase_07 AC 88 ms
103,192 KB
testcase_08 AC 88 ms
103,440 KB
testcase_09 AC 38 ms
52,140 KB
testcase_10 AC 83 ms
103,652 KB
testcase_11 AC 85 ms
103,304 KB
testcase_12 AC 84 ms
103,512 KB
testcase_13 AC 86 ms
103,720 KB
testcase_14 AC 86 ms
103,336 KB
testcase_15 AC 85 ms
103,472 KB
testcase_16 AC 84 ms
103,424 KB
testcase_17 AC 85 ms
103,528 KB
testcase_18 AC 38 ms
53,292 KB
testcase_19 AC 88 ms
103,892 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 38 ms
53,216 KB
testcase_23 AC 37 ms
53,652 KB
testcase_24 AC 80 ms
101,452 KB
testcase_25 RE -
testcase_26 AC 38 ms
52,568 KB
testcase_27 AC 39 ms
52,340 KB
testcase_28 AC 38 ms
51,828 KB
testcase_29 AC 38 ms
52,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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