結果

問題 No.1120 Strange Teacher
ユーザー ShirotsumeShirotsume
提出日時 2022-07-19 23:25:22
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 497 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 103,296 KB
最終ジャッジ日時 2024-07-02 03:21:14
合計ジャッジ時間 4,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 47 ms
59,008 KB
testcase_03 AC 53 ms
63,872 KB
testcase_04 AC 99 ms
103,296 KB
testcase_05 AC 100 ms
103,040 KB
testcase_06 AC 99 ms
103,296 KB
testcase_07 AC 99 ms
103,040 KB
testcase_08 AC 97 ms
103,168 KB
testcase_09 AC 41 ms
51,584 KB
testcase_10 AC 93 ms
101,760 KB
testcase_11 AC 92 ms
102,144 KB
testcase_12 AC 91 ms
102,016 KB
testcase_13 AC 92 ms
101,888 KB
testcase_14 AC 90 ms
101,632 KB
testcase_15 AC 91 ms
101,888 KB
testcase_16 AC 91 ms
101,632 KB
testcase_17 AC 92 ms
101,632 KB
testcase_18 AC 41 ms
51,712 KB
testcase_19 AC 98 ms
100,608 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 40 ms
51,968 KB
testcase_23 AC 39 ms
51,968 KB
testcase_24 AC 91 ms
101,248 KB
testcase_25 RE -
testcase_26 AC 41 ms
51,584 KB
testcase_27 AC 40 ms
51,968 KB
testcase_28 AC 41 ms
52,096 KB
testcase_29 AC 41 ms
52,096 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()

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