結果

問題 No.1120 Strange Teacher
ユーザー arahi10arahi10
提出日時 2020-07-24 23:33:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 205 ms / 1,000 ms
コード長 471 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,760 KB
最終ジャッジ日時 2024-06-25 22:48:46
合計ジャッジ時間 4,497 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 48 ms
12,160 KB
testcase_04 AC 202 ms
24,512 KB
testcase_05 AC 205 ms
24,520 KB
testcase_06 AC 202 ms
24,452 KB
testcase_07 AC 200 ms
24,512 KB
testcase_08 AC 201 ms
24,340 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 95 ms
24,384 KB
testcase_11 AC 95 ms
24,388 KB
testcase_12 AC 96 ms
24,512 KB
testcase_13 AC 96 ms
24,640 KB
testcase_14 AC 95 ms
24,392 KB
testcase_15 AC 96 ms
24,336 KB
testcase_16 AC 96 ms
24,388 KB
testcase_17 AC 96 ms
24,596 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 184 ms
24,760 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 190 ms
21,808 KB
testcase_25 AC 31 ms
10,624 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a,b=[list(map(int,input().split())) for i in range(2)]
if n==2:
    if sum(a)==sum(b):
        print(sum(A-B for A,B in zip(a,b)if A>B))
    else:print(-1)
else:
    v=sum(a)-sum(b)
    if v<0 or v%(n-2):print(-1)
    else:
        k=v//(n-2)
        f=k
        for x,y in zip(a,b):
            if (x-y-k)%2 or k+min(x-y,y-x)<0:print(-1);exit()
            bc=(y-x+k)//2
            if f<bc:print(-1);exit()
            f-=bc
        print(-1 if f else k)
0