結果

問題 No.1120 Strange Teacher
ユーザー ShirotsumeShirotsume
提出日時 2022-07-19 23:27:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 1,000 ms
コード長 604 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 103,296 KB
最終ジャッジ日時 2024-07-02 03:23:23
合計ジャッジ時間 3,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,328 KB
testcase_01 AC 41 ms
51,456 KB
testcase_02 AC 47 ms
58,624 KB
testcase_03 AC 52 ms
64,000 KB
testcase_04 AC 96 ms
103,296 KB
testcase_05 AC 95 ms
103,168 KB
testcase_06 AC 96 ms
102,912 KB
testcase_07 AC 99 ms
103,040 KB
testcase_08 AC 95 ms
103,168 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 89 ms
101,760 KB
testcase_11 AC 90 ms
101,888 KB
testcase_12 AC 89 ms
101,632 KB
testcase_13 AC 89 ms
101,504 KB
testcase_14 AC 89 ms
101,376 KB
testcase_15 AC 88 ms
101,376 KB
testcase_16 AC 88 ms
101,632 KB
testcase_17 AC 89 ms
101,760 KB
testcase_18 AC 40 ms
51,968 KB
testcase_19 AC 97 ms
100,480 KB
testcase_20 AC 40 ms
51,328 KB
testcase_21 AC 41 ms
51,584 KB
testcase_22 AC 40 ms
51,968 KB
testcase_23 AC 41 ms
51,584 KB
testcase_24 AC 91 ms
101,504 KB
testcase_25 AC 40 ms
51,712 KB
testcase_26 AC 41 ms
51,712 KB
testcase_27 AC 41 ms
52,096 KB
testcase_28 AC 40 ms
51,456 KB
testcase_29 AC 41 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
INF = 2 ** 63 - 1
mod = 998244353
n = ii()
a = li()

b = li()

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

if time % (n - 2) != 0:
    print(-1)
    exit()

time //= n - 2
cnt = 0
for i in range(n):
    a[i] -= time
    if b[i] < a[i] or (b[i] - a[i]) % 2:
        print(-1)
        exit()
    cnt += (b[i] - a[i]) // 2
if cnt == time:
    print(time)
else:
    print(-1)
0