結果

問題 No.1120 Strange Teacher
ユーザー H3PO4H3PO4
提出日時 2020-07-26 16:34:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 108 ms / 1,000 ms
コード長 436 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,260 KB
最終ジャッジ日時 2024-06-28 17:25:20
合計ジャッジ時間 4,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 38 ms
12,288 KB
testcase_04 AC 108 ms
24,364 KB
testcase_05 AC 104 ms
24,444 KB
testcase_06 AC 101 ms
25,116 KB
testcase_07 AC 101 ms
24,360 KB
testcase_08 AC 104 ms
24,368 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 87 ms
25,128 KB
testcase_11 AC 83 ms
25,128 KB
testcase_12 AC 93 ms
25,260 KB
testcase_13 AC 81 ms
24,488 KB
testcase_14 AC 85 ms
24,320 KB
testcase_15 AC 87 ms
24,368 KB
testcase_16 AC 99 ms
24,448 KB
testcase_17 AC 99 ms
24,444 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 106 ms
24,156 KB
testcase_20 AC 25 ms
10,752 KB
testcase_21 AC 25 ms
10,752 KB
testcase_22 AC 25 ms
10,752 KB
testcase_23 AC 26 ms
10,752 KB
testcase_24 AC 102 ms
21,896 KB
testcase_25 AC 26 ms
10,624 KB
testcase_26 AC 25 ms
10,624 KB
testcase_27 AC 25 ms
10,752 KB
testcase_28 AC 25 ms
10,624 KB
testcase_29 AC 26 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = tuple(map(int, input().split()))
B = tuple(map(int, input().split()))


def is_impossible(b):
    if b:
        print(-1)
        exit()


if N == 2:
    print(abs(A[0] - B[0]) if sum(A) == sum(B) else -1)
    exit()

is_impossible((sum(A) - sum(B)) % (N - 2))

x = (sum(A) - sum(B)) // (N - 2)
is_impossible(x < 0)

C = [B[i] - (A[i] - x) for i in range(N)]
is_impossible(any(c < 0 or c % 2 for c in C))

print(x)
0