結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 537 ms
43,840 KB
testcase_01 AC 530 ms
44,096 KB
testcase_02 AC 536 ms
43,840 KB
testcase_03 AC 545 ms
43,956 KB
testcase_04 AC 683 ms
50,736 KB
testcase_05 AC 688 ms
50,996 KB
testcase_06 AC 687 ms
51,428 KB
testcase_07 AC 683 ms
50,796 KB
testcase_08 AC 690 ms
50,528 KB
testcase_09 AC 540 ms
43,568 KB
testcase_10 AC 670 ms
51,024 KB
testcase_11 AC 670 ms
50,732 KB
testcase_12 AC 669 ms
50,752 KB
testcase_13 AC 661 ms
50,784 KB
testcase_14 AC 665 ms
51,168 KB
testcase_15 AC 664 ms
50,884 KB
testcase_16 AC 684 ms
51,016 KB
testcase_17 AC 688 ms
50,448 KB
testcase_18 AC 548 ms
43,832 KB
testcase_19 AC 688 ms
50,996 KB
testcase_20 AC 538 ms
43,956 KB
testcase_21 AC 536 ms
43,844 KB
testcase_22 AC 539 ms
43,964 KB
testcase_23 AC 542 ms
44,088 KB
testcase_24 AC 686 ms
50,368 KB
testcase_25 AC 541 ms
43,708 KB
testcase_26 AC 548 ms
44,228 KB
testcase_27 AC 544 ms
43,840 KB
testcase_28 AC 534 ms
43,712 KB
testcase_29 AC 537 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()])
def main(A,B):
    if N == 2:
        if sum(A) != sum(B):
            return -1
        else:
            return abs(A[0] - B[0])
    else:
        if sum(A) < sum(B) or (sum(A) - sum(B)) % (N - 2) != 0:
            return -1
        t = (sum(A) - sum(B)) // (N - 2)
        A -= t
        x = B - A
        if np.all((x >= 0) & (x % 2 == 0)):
            return t
        else:
            return -1
print(main(A,B))
0