結果

問題 No.1120 Strange Teacher
ユーザー 👑 rin204rin204
提出日時 2022-07-04 16:43:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 1,000 ms
コード長 478 bytes
コンパイル時間 828 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 103,784 KB
最終ジャッジ日時 2024-12-14 07:41:26
合計ジャッジ時間 4,164 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,324 KB
testcase_01 AC 39 ms
52,820 KB
testcase_02 AC 44 ms
59,080 KB
testcase_03 AC 49 ms
65,032 KB
testcase_04 AC 93 ms
103,220 KB
testcase_05 AC 88 ms
103,552 KB
testcase_06 AC 91 ms
103,784 KB
testcase_07 AC 91 ms
103,392 KB
testcase_08 AC 91 ms
103,188 KB
testcase_09 AC 41 ms
52,616 KB
testcase_10 AC 82 ms
101,628 KB
testcase_11 AC 83 ms
101,716 KB
testcase_12 AC 83 ms
101,472 KB
testcase_13 AC 82 ms
101,764 KB
testcase_14 AC 84 ms
101,772 KB
testcase_15 AC 83 ms
101,488 KB
testcase_16 AC 87 ms
103,156 KB
testcase_17 AC 87 ms
103,364 KB
testcase_18 AC 38 ms
52,500 KB
testcase_19 AC 91 ms
100,672 KB
testcase_20 AC 39 ms
52,948 KB
testcase_21 AC 38 ms
52,952 KB
testcase_22 AC 39 ms
53,680 KB
testcase_23 AC 38 ms
52,880 KB
testcase_24 AC 84 ms
101,976 KB
testcase_25 AC 39 ms
52,400 KB
testcase_26 AC 40 ms
53,460 KB
testcase_27 AC 39 ms
52,200 KB
testcase_28 AC 40 ms
52,440 KB
testcase_29 AC 40 ms
52,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
tota = sum(A)
totb = sum(B)
if n == 2:
    if tota == totb:
        print(abs(A[0] - B[0]))
    else:
        print(-1)
    exit()
d = tota - totb
if d < 0:
    print(-1)
    exit()
if d % (n - 2) != 0:
    print(-1)
    exit()
cnt = d // (n - 2)
A = [a - cnt for a in A]
tot = 0
for a, b in zip(A, B):
    d = b - a
    if d < 0 or d & 1:
        print(-1)
        exit()
print(cnt)
    
0