結果

問題 No.1120 Strange Teacher
ユーザー stngstng
提出日時 2022-09-04 19:28:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 742 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 94,436 KB
最終ジャッジ日時 2024-11-19 01:55:47
合計ジャッジ時間 3,811 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 84 ms
92,532 KB
testcase_05 AC 82 ms
92,000 KB
testcase_06 AC 79 ms
92,048 KB
testcase_07 AC 81 ms
92,092 KB
testcase_08 AC 79 ms
91,888 KB
testcase_09 AC 39 ms
53,916 KB
testcase_10 AC 73 ms
90,892 KB
testcase_11 AC 74 ms
91,320 KB
testcase_12 AC 73 ms
90,388 KB
testcase_13 AC 133 ms
94,436 KB
testcase_14 AC 130 ms
94,320 KB
testcase_15 AC 124 ms
94,132 KB
testcase_16 AC 134 ms
94,308 KB
testcase_17 AC 124 ms
93,592 KB
testcase_18 AC 41 ms
52,336 KB
testcase_19 AC 80 ms
92,432 KB
testcase_20 AC 40 ms
52,608 KB
testcase_21 AC 40 ms
52,416 KB
testcase_22 AC 40 ms
52,672 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 41 ms
53,312 KB
testcase_26 AC 85 ms
59,208 KB
testcase_27 AC 38 ms
52,596 KB
testcase_28 AC 38 ms
52,824 KB
testcase_29 AC 38 ms
53,200 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
    if tasu*(n-1) == hiku:
        print(ttl)
        exit()

print(-1)
0