結果

問題 No.1120 Strange Teacher
ユーザー 37zigen37zigen
提出日時 2020-07-24 11:06:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 675 ms / 1,000 ms
コード長 446 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,260 KB
最終ジャッジ日時 2024-06-24 21:37:53
合計ジャッジ時間 21,148 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 512 ms
44,344 KB
testcase_01 AC 512 ms
44,224 KB
testcase_02 AC 537 ms
44,340 KB
testcase_03 AC 540 ms
44,088 KB
testcase_04 AC 675 ms
50,924 KB
testcase_05 AC 668 ms
50,740 KB
testcase_06 AC 673 ms
50,656 KB
testcase_07 AC 673 ms
51,260 KB
testcase_08 AC 664 ms
50,768 KB
testcase_09 AC 518 ms
43,968 KB
testcase_10 AC 641 ms
50,628 KB
testcase_11 AC 646 ms
51,008 KB
testcase_12 AC 639 ms
50,740 KB
testcase_13 AC 641 ms
51,004 KB
testcase_14 AC 637 ms
50,924 KB
testcase_15 AC 638 ms
50,632 KB
testcase_16 AC 667 ms
50,656 KB
testcase_17 AC 674 ms
50,932 KB
testcase_18 AC 522 ms
44,088 KB
testcase_19 AC 668 ms
50,736 KB
testcase_20 AC 517 ms
44,472 KB
testcase_21 AC 515 ms
44,212 KB
testcase_22 AC 516 ms
44,480 KB
testcase_23 AC 517 ms
44,600 KB
testcase_24 AC 672 ms
50,360 KB
testcase_25 AC 521 ms
44,228 KB
testcase_26 AC 526 ms
44,340 KB
testcase_27 AC 521 ms
44,476 KB
testcase_28 AC 514 ms
44,216 KB
testcase_29 AC 515 ms
44,088 KB
権限があれば一括ダウンロードができます

ソースコード

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
    x=B-A
    if np.all((x>=0) & (x%2==0)):
        print(t)
    else:
        print(-1)
0