結果

問題 No.1120 Strange Teacher
ユーザー 37zigen37zigen
提出日時 2020-07-24 11:00:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
44,092 KB
testcase_01 AC 498 ms
44,080 KB
testcase_02 AC 502 ms
44,088 KB
testcase_03 AC 521 ms
44,472 KB
testcase_04 AC 696 ms
51,120 KB
testcase_05 AC 700 ms
50,732 KB
testcase_06 AC 697 ms
50,628 KB
testcase_07 AC 691 ms
50,640 KB
testcase_08 AC 688 ms
50,752 KB
testcase_09 AC 495 ms
44,352 KB
testcase_10 AC 614 ms
50,928 KB
testcase_11 AC 615 ms
51,296 KB
testcase_12 AC 618 ms
51,044 KB
testcase_13 AC 621 ms
50,652 KB
testcase_14 AC 614 ms
50,740 KB
testcase_15 AC 615 ms
50,916 KB
testcase_16 AC 639 ms
51,012 KB
testcase_17 AC 639 ms
51,008 KB
testcase_18 AC 494 ms
44,216 KB
testcase_19 AC 692 ms
50,784 KB
testcase_20 AC 494 ms
44,448 KB
testcase_21 AC 490 ms
44,216 KB
testcase_22 AC 493 ms
44,084 KB
testcase_23 AC 498 ms
44,344 KB
testcase_24 AC 690 ms
50,356 KB
testcase_25 AC 492 ms
44,092 KB
testcase_26 AC 496 ms
44,088 KB
testcase_27 AC 488 ms
44,228 KB
testcase_28 AC 498 ms
44,092 KB
testcase_29 AC 503 ms
44,084 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
    for a,b in zip(A,B):
        if a>b or (b-a)%2==1:
            print(-1)
            exit(0)
    print(t)
0