結果

問題 No.1120 Strange Teacher
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-24 14:47:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 1,000 ms
コード長 368 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 102,408 KB
最終ジャッジ日時 2024-06-25 03:09:38
合計ジャッジ時間 3,692 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 45 ms
58,368 KB
testcase_03 AC 51 ms
63,872 KB
testcase_04 AC 102 ms
101,888 KB
testcase_05 AC 100 ms
102,144 KB
testcase_06 AC 105 ms
102,016 KB
testcase_07 AC 102 ms
102,272 KB
testcase_08 AC 104 ms
102,272 KB
testcase_09 AC 39 ms
51,712 KB
testcase_10 AC 100 ms
102,136 KB
testcase_11 AC 98 ms
102,144 KB
testcase_12 AC 101 ms
102,400 KB
testcase_13 AC 100 ms
102,084 KB
testcase_14 AC 98 ms
102,400 KB
testcase_15 AC 102 ms
102,144 KB
testcase_16 AC 99 ms
102,408 KB
testcase_17 AC 100 ms
102,144 KB
testcase_18 AC 39 ms
51,968 KB
testcase_19 AC 103 ms
101,632 KB
testcase_20 AC 39 ms
51,552 KB
testcase_21 AC 40 ms
51,584 KB
testcase_22 AC 39 ms
51,840 KB
testcase_23 AC 40 ms
51,712 KB
testcase_24 AC 101 ms
101,248 KB
testcase_25 AC 39 ms
51,712 KB
testcase_26 AC 40 ms
51,840 KB
testcase_27 AC 41 ms
51,840 KB
testcase_28 AC 40 ms
51,840 KB
testcase_29 AC 39 ms
51,584 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 or b[i]<(a[i]-x):
            print(-1)
            exit()
    print(x)
else:
    print(-1)
0