結果

問題 No.1120 Strange Teacher
ユーザー ytftytft
提出日時 2021-05-07 08:44:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 392 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 103,780 KB
最終ジャッジ日時 2024-09-14 21:54:27
合計ジャッジ時間 3,455 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 38 ms
51,456 KB
testcase_10 AC 80 ms
101,432 KB
testcase_11 AC 79 ms
101,504 KB
testcase_12 AC 81 ms
102,016 KB
testcase_13 AC 78 ms
101,556 KB
testcase_14 AC 81 ms
101,504 KB
testcase_15 AC 83 ms
101,504 KB
testcase_16 AC 87 ms
103,168 KB
testcase_17 AC 90 ms
103,552 KB
testcase_18 AC 39 ms
51,968 KB
testcase_19 AC 86 ms
100,736 KB
testcase_20 AC 39 ms
52,224 KB
testcase_21 AC 38 ms
51,712 KB
testcase_22 AC 39 ms
51,840 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 38 ms
51,960 KB
testcase_26 AC 40 ms
51,456 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
flg=0
if N==2:
    if sum(A)==sum(B):
        flg=1
        time=abs(A[0]-B[0])
else:
    if (sum(A)-sum(B))%(N-2)==0:
        time=(sum(A)-sum(B))//(N-2)
        flg=1
        for i in range(N):
            if (A[i]-B[i]+time)%2==1 or (B[i]>A[i]-time):
                flg=0
print(time if flg else -1)
        
0