結果

問題 No.1120 Strange Teacher
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-07-22 23:25:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 805 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 25,308 KB
最終ジャッジ日時 2024-06-23 01:15:31
合計ジャッジ時間 3,484 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 41 ms
12,288 KB
testcase_04 AC 141 ms
24,536 KB
testcase_05 AC 129 ms
24,488 KB
testcase_06 AC 124 ms
24,472 KB
testcase_07 AC 118 ms
24,616 KB
testcase_08 AC 118 ms
24,536 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 92 ms
25,304 KB
testcase_11 AC 93 ms
25,308 KB
testcase_12 AC 93 ms
25,308 KB
testcase_13 AC 94 ms
24,532 KB
testcase_14 AC 92 ms
24,660 KB
testcase_15 AC 91 ms
24,540 KB
testcase_16 AC 92 ms
24,612 KB
testcase_17 AC 92 ms
24,532 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 115 ms
24,900 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 27 ms
10,880 KB
testcase_24 AC 140 ms
21,700 KB
testcase_25 AC 28 ms
10,880 KB
testcase_26 AC 27 ms
10,880 KB
testcase_27 AC 27 ms
10,880 KB
testcase_28 AC 28 ms
10,752 KB
testcase_29 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
sa = sum(a)
sb = sum(b)
if n == 2:
    dif = a[0]-b[0]
    if a[1]+dif == b[1]:
        print(abs(dif))
    else:
        print(-1)
    exit()
if sb > sa or (sa-sb)%(n-2):
    print(-1)

else:
    count = (sa-sb)//(n-2)
    
    x = 0
    for i in range(n):
        dif = a[i]-b[i]
        
        if dif == count:
            continue
        if dif >= 0:
            if (count-dif)%2 or dif > count:
                print(-1)
                exit()
            x += (count-dif)//2
        else:
            if (count+dif)%2 or count+dif < 0:
                print(-1)
                exit()
            x += -dif + (count+dif)//2
        
    if x == count:
        print(count)
    else:
        print(-1)
        
0