結果

問題 No.1120 Strange Teacher
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-07-22 23:18:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 778 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 25,296 KB
最終ジャッジ日時 2024-06-23 01:02:28
合計ジャッジ時間 3,486 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 32 ms
11,008 KB
testcase_03 AC 42 ms
12,288 KB
testcase_04 AC 142 ms
24,608 KB
testcase_05 AC 126 ms
24,612 KB
testcase_06 AC 115 ms
24,512 KB
testcase_07 AC 117 ms
24,348 KB
testcase_08 AC 115 ms
24,356 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 91 ms
25,296 KB
testcase_11 AC 92 ms
25,252 KB
testcase_12 AC 91 ms
25,168 KB
testcase_13 AC 93 ms
24,528 KB
testcase_14 AC 94 ms
24,656 KB
testcase_15 AC 92 ms
24,348 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 118 ms
24,720 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 29 ms
10,624 KB
testcase_24 AC 136 ms
21,576 KB
testcase_25 AC 28 ms
10,752 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 28 ms
10,624 KB
testcase_29 AC 28 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[0]+dif == b[0]:
        print(abs(dif))
    else:
        print(-1)
    exit()
if sb > sa or (sa-sb)%(n-2) != 0:
    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:
                print(-1)
                exit()
            x += (count-dif)//2
        else:
            if (count+dif)%2:
                print(-1)
                exit()
            x += -dif + (count+dif)//2
        
    if x == count:
        print(count)
    else:
        print(-1)
        
0