結果

問題 No.1120 Strange Teacher
ユーザー neterukunneterukun
提出日時 2020-07-22 22:09:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 1,000 ms
コード長 506 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 103,708 KB
最終ジャッジ日時 2024-06-22 18:19:56
合計ジャッジ時間 3,196 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,004 KB
testcase_01 AC 38 ms
52,808 KB
testcase_02 AC 41 ms
59,460 KB
testcase_03 AC 46 ms
64,292 KB
testcase_04 AC 85 ms
103,708 KB
testcase_05 AC 86 ms
103,132 KB
testcase_06 AC 86 ms
103,592 KB
testcase_07 AC 84 ms
103,384 KB
testcase_08 AC 86 ms
103,624 KB
testcase_09 AC 37 ms
52,376 KB
testcase_10 AC 84 ms
103,620 KB
testcase_11 AC 84 ms
103,328 KB
testcase_12 AC 83 ms
103,448 KB
testcase_13 AC 81 ms
102,416 KB
testcase_14 AC 80 ms
102,220 KB
testcase_15 AC 82 ms
102,196 KB
testcase_16 AC 80 ms
102,088 KB
testcase_17 AC 81 ms
101,964 KB
testcase_18 AC 38 ms
52,200 KB
testcase_19 AC 87 ms
100,828 KB
testcase_20 AC 38 ms
52,988 KB
testcase_21 AC 37 ms
53,352 KB
testcase_22 AC 38 ms
52,644 KB
testcase_23 AC 38 ms
53,344 KB
testcase_24 AC 80 ms
101,096 KB
testcase_25 AC 38 ms
52,072 KB
testcase_26 AC 38 ms
52,068 KB
testcase_27 AC 38 ms
52,352 KB
testcase_28 AC 38 ms
52,472 KB
testcase_29 AC 39 ms
52,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))


diff = 0
for i in range(n):
    diff += a[i] - b[i]

if n == 2:
    if sum(a) != sum(b):
        print(-1)
    else:
        print(abs(a[0] - b[0]))
    exit()

if diff % (n - 2) == 0 and diff // (n - 2) >= 0:
    cnt = diff // (n - 2)
else:
    print(-1)
    exit()

for i in range(n):
    d = cnt - (a[i] - b[i])
    if d % 2 == 0 and d >= 0:
        continue
    else:
        print(-1)
        exit()
print(cnt)
0