結果

問題 No.1120 Strange Teacher
ユーザー lloyzlloyz
提出日時 2023-05-14 00:08:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 551 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 103,936 KB
最終ジャッジ日時 2024-05-07 02:43:03
合計ジャッジ時間 4,593 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 43 ms
58,880 KB
testcase_03 AC 44 ms
65,152 KB
testcase_04 AC 85 ms
103,680 KB
testcase_05 AC 84 ms
103,528 KB
testcase_06 AC 85 ms
103,680 KB
testcase_07 AC 85 ms
103,552 KB
testcase_08 AC 84 ms
103,552 KB
testcase_09 AC 34 ms
52,224 KB
testcase_10 AC 79 ms
103,552 KB
testcase_11 AC 81 ms
103,552 KB
testcase_12 AC 82 ms
103,936 KB
testcase_13 AC 81 ms
103,600 KB
testcase_14 AC 85 ms
103,296 KB
testcase_15 AC 83 ms
103,808 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 35 ms
51,968 KB
testcase_21 AC 35 ms
52,352 KB
testcase_22 AC 35 ms
51,712 KB
testcase_23 AC 36 ms
51,712 KB
testcase_24 AC 80 ms
102,804 KB
testcase_25 AC 35 ms
51,968 KB
testcase_26 AC 34 ms
51,968 KB
testcase_27 AC 35 ms
52,096 KB
testcase_28 AC 35 ms
51,968 KB
testcase_29 AC 36 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

D = []
for i in range(n):
    D.append(B[i] - A[i])
sumD = sum(D)
if n == 2:
    if sumD == 0:
        print(abs(D[0]))
    else:
        print(-1)
    exit()
if sumD < 0 and abs(sumD) % (n - 2) == 0:
    cnt = abs(sumD) // (n - 2)
    res = 0
    for i in range(n):
        if (D[i] + cnt) % 2 != 0:
            print(-1)
            exit()
        res += (D[i] + cnt) // 2
    if res == cnt:
        print(cnt)
    else:
        print(-1)
else:
    print(-1)
0