結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 39 ms
12,032 KB
testcase_04 AC 108 ms
24,228 KB
testcase_05 AC 113 ms
24,188 KB
testcase_06 AC 109 ms
24,344 KB
testcase_07 AC 118 ms
24,228 KB
testcase_08 AC 111 ms
24,360 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 94 ms
24,996 KB
testcase_11 AC 94 ms
24,996 KB
testcase_12 AC 96 ms
25,256 KB
testcase_13 AC 94 ms
24,228 KB
testcase_14 AC 94 ms
24,184 KB
testcase_15 AC 98 ms
24,232 KB
testcase_16 AC 95 ms
24,188 KB
testcase_17 AC 94 ms
24,184 KB
testcase_18 AC 29 ms
10,496 KB
testcase_19 AC 109 ms
24,684 KB
testcase_20 AC 30 ms
10,496 KB
testcase_21 AC 28 ms
10,496 KB
testcase_22 AC 29 ms
10,496 KB
testcase_23 AC 29 ms
10,496 KB
testcase_24 AC 102 ms
21,632 KB
testcase_25 AC 29 ms
10,496 KB
testcase_26 WA -
testcase_27 AC 29 ms
10,624 KB
testcase_28 AC 29 ms
10,752 KB
testcase_29 AC 29 ms
10,496 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)
is_impossible(any(B[i] < A[i] - x for i in range(N)))
print(x)
0