結果

問題 No.1120 Strange Teacher
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-24 14:39:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 350 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 102,816 KB
最終ジャッジ日時 2024-06-25 02:59:54
合計ジャッジ時間 3,378 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,804 KB
testcase_01 AC 36 ms
52,148 KB
testcase_02 AC 42 ms
58,540 KB
testcase_03 AC 48 ms
64,232 KB
testcase_04 AC 92 ms
102,144 KB
testcase_05 AC 91 ms
102,456 KB
testcase_06 AC 91 ms
102,096 KB
testcase_07 AC 92 ms
102,284 KB
testcase_08 AC 91 ms
102,472 KB
testcase_09 AC 39 ms
52,592 KB
testcase_10 AC 91 ms
102,316 KB
testcase_11 AC 88 ms
102,348 KB
testcase_12 AC 89 ms
102,424 KB
testcase_13 AC 89 ms
102,376 KB
testcase_14 AC 89 ms
102,308 KB
testcase_15 AC 89 ms
102,080 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 37 ms
52,496 KB
testcase_19 AC 90 ms
101,796 KB
testcase_20 AC 38 ms
52,444 KB
testcase_21 AC 37 ms
52,464 KB
testcase_22 AC 37 ms
52,692 KB
testcase_23 AC 36 ms
53,768 KB
testcase_24 AC 88 ms
102,032 KB
testcase_25 AC 37 ms
53,312 KB
testcase_26 AC 37 ms
52,640 KB
testcase_27 AC 36 ms
52,868 KB
testcase_28 AC 36 ms
53,248 KB
testcase_29 AC 37 ms
53,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
*a,=map(int,input().split())
*b,=map(int,input().split())
dif=sum(a)-sum(b)

if n==2:
    if dif!=0:
        print(-1)
    else:
        print(abs(a[0]-b[0]))
elif dif>=0 and dif%(n-2)==0:
    x=dif//(n-2)
    for i in range(n):
        if (b[i]-(a[i]-x))%2==1:
            print(-1)
            exit()
    print(x)
else:
    print(-1)
0