結果

問題 No.1120 Strange Teacher
ユーザー neterukunneterukun
提出日時 2020-07-22 22:08:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 515 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 103,708 KB
最終ジャッジ日時 2024-06-22 18:17:02
合計ジャッジ時間 3,369 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,480 KB
testcase_01 AC 37 ms
52,276 KB
testcase_02 AC 41 ms
59,872 KB
testcase_03 AC 45 ms
64,332 KB
testcase_04 AC 85 ms
103,204 KB
testcase_05 AC 87 ms
103,432 KB
testcase_06 AC 86 ms
103,308 KB
testcase_07 AC 86 ms
103,672 KB
testcase_08 AC 86 ms
103,504 KB
testcase_09 AC 38 ms
52,488 KB
testcase_10 AC 84 ms
103,696 KB
testcase_11 AC 84 ms
103,644 KB
testcase_12 AC 84 ms
103,708 KB
testcase_13 AC 81 ms
101,916 KB
testcase_14 AC 79 ms
102,092 KB
testcase_15 AC 80 ms
102,016 KB
testcase_16 AC 81 ms
101,880 KB
testcase_17 AC 81 ms
102,160 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
53,012 KB
testcase_21 AC 37 ms
52,684 KB
testcase_22 AC 38 ms
53,864 KB
testcase_23 AC 37 ms
53,124 KB
testcase_24 AC 81 ms
101,016 KB
testcase_25 AC 38 ms
52,688 KB
testcase_26 AC 39 ms
54,272 KB
testcase_27 AC 39 ms
53,712 KB
testcase_28 AC 38 ms
52,368 KB
testcase_29 AC 38 ms
52,392 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