結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 35 ms
12,416 KB
testcase_04 AC 123 ms
24,656 KB
testcase_05 AC 107 ms
24,400 KB
testcase_06 AC 99 ms
24,588 KB
testcase_07 AC 103 ms
24,484 KB
testcase_08 AC 101 ms
24,396 KB
testcase_09 AC 25 ms
10,880 KB
testcase_10 AC 78 ms
25,300 KB
testcase_11 AC 77 ms
25,296 KB
testcase_12 AC 78 ms
25,168 KB
testcase_13 AC 77 ms
24,528 KB
testcase_14 AC 78 ms
24,524 KB
testcase_15 AC 78 ms
24,648 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 25 ms
10,752 KB
testcase_19 AC 98 ms
24,848 KB
testcase_20 AC 27 ms
10,624 KB
testcase_21 AC 26 ms
10,752 KB
testcase_22 AC 25 ms
10,880 KB
testcase_23 AC 25 ms
10,624 KB
testcase_24 AC 122 ms
21,700 KB
testcase_25 AC 25 ms
10,752 KB
testcase_26 AC 25 ms
10,752 KB
testcase_27 AC 24 ms
10,880 KB
testcase_28 AC 25 ms
10,880 KB
testcase_29 AC 25 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) != 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