結果

問題 No.1120 Strange Teacher
ユーザー stngstng
提出日時 2022-09-04 19:30:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 755 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 94,448 KB
最終ジャッジ日時 2024-11-19 02:00:34
合計ジャッジ時間 3,741 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,428 KB
testcase_01 AC 43 ms
58,948 KB
testcase_02 AC 41 ms
53,748 KB
testcase_03 AC 52 ms
65,376 KB
testcase_04 AC 88 ms
92,684 KB
testcase_05 AC 85 ms
92,140 KB
testcase_06 AC 80 ms
91,632 KB
testcase_07 AC 82 ms
92,356 KB
testcase_08 AC 81 ms
91,744 KB
testcase_09 AC 39 ms
52,864 KB
testcase_10 AC 74 ms
90,480 KB
testcase_11 AC 73 ms
90,952 KB
testcase_12 AC 74 ms
91,632 KB
testcase_13 AC 128 ms
94,388 KB
testcase_14 AC 126 ms
94,448 KB
testcase_15 AC 119 ms
93,660 KB
testcase_16 AC 128 ms
94,268 KB
testcase_17 AC 119 ms
94,028 KB
testcase_18 AC 40 ms
52,808 KB
testcase_19 AC 80 ms
92,660 KB
testcase_20 AC 42 ms
53,812 KB
testcase_21 AC 41 ms
53,212 KB
testcase_22 AC 39 ms
52,524 KB
testcase_23 AC 40 ms
54,340 KB
testcase_24 AC 79 ms
91,576 KB
testcase_25 AC 40 ms
52,496 KB
testcase_26 AC 91 ms
57,656 KB
testcase_27 AC 41 ms
53,616 KB
testcase_28 AC 41 ms
52,412 KB
testcase_29 AC 40 ms
53,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(i) for i in input().split()]
b = [int(i) for i in input().split()]

li = [0]*n
ans = 0
parity = (b[0]-a[0])%2
for i in range(n):
    li[i] = b[i]-a[i]
    if li[i] % 2 != parity:
        print(-1)
        exit()

li.sort(reverse=True)
f = True
for i in range(n):
    if li[i] != 0:
        f = False
        break
if f == True:
    print(0)
    exit()

if li[n-1] > 0:
    print(-1)
    exit()

ttl = -li[n-1]
itr = 10**7
hiku = 0
tasu = 0

for i in range(n):
    tmp = (ttl+li[i])//2
    tasu += tmp
    hiku += ttl-tmp
#print(tasu,hiku,"ttl?")
if tasu*(n-1) == hiku:
    print(ttl)
    exit()

for i in range(itr):
    tasu += n
    hiku += n
    ttl += 2
    if tasu*(n-1) == hiku:
        print(ttl)
        exit()

print(-1)
0