結果

問題 No.1120 Strange Teacher
ユーザー neterukunneterukun
提出日時 2020-07-22 22:05:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 888 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 103,712 KB
最終ジャッジ日時 2024-06-22 18:09:46
合計ジャッジ時間 3,629 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,072 KB
testcase_01 AC 35 ms
53,196 KB
testcase_02 AC 37 ms
58,760 KB
testcase_03 AC 42 ms
64,912 KB
testcase_04 AC 79 ms
103,360 KB
testcase_05 AC 79 ms
103,204 KB
testcase_06 AC 80 ms
103,392 KB
testcase_07 AC 80 ms
103,636 KB
testcase_08 AC 79 ms
103,196 KB
testcase_09 AC 33 ms
52,820 KB
testcase_10 AC 74 ms
102,140 KB
testcase_11 AC 77 ms
102,172 KB
testcase_12 AC 77 ms
101,944 KB
testcase_13 AC 78 ms
102,024 KB
testcase_14 AC 75 ms
102,136 KB
testcase_15 AC 75 ms
102,104 KB
testcase_16 AC 75 ms
101,872 KB
testcase_17 AC 75 ms
102,132 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 36 ms
53,188 KB
testcase_23 AC 33 ms
52,280 KB
testcase_24 AC 72 ms
101,460 KB
testcase_25 RE -
testcase_26 AC 35 ms
53,072 KB
testcase_27 AC 35 ms
52,900 KB
testcase_28 AC 35 ms
53,196 KB
testcase_29 AC 34 ms
52,856 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 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