結果

問題 No.1120 Strange Teacher
ユーザー 37zigen37zigen
提出日時 2020-07-24 11:00:24
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 700 ms / 1,000 ms
コード長 466 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,296 KB
最終ジャッジ日時 2024-06-24 21:28:21
合計ジャッジ時間 20,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N=int(input())
A=np.array([int(x) for x in input().split()])
B=np.array([int(x) for x in input().split()])
if N==2:
    if sum(A) != sum(B):
        print(-1)
    else:
        print(abs(A[0]-B[0]))
else:
    if sum(A)<sum(B) or (sum(A)-sum(B))%(N-2) !=0:
        print(-1)
        exit(0)
    t=(sum(A)-sum(B))//(N-2)
    A-=t
    res=t
    for a,b in zip(A,B):
        if a>b or (b-a)%2==1:
            print(-1)
            exit(0)
    print(t)
0