結果

問題 No.1120 Strange Teacher
ユーザー wattaiheiwattaihei
提出日時 2020-07-22 21:37:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 384 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,476 KB
最終ジャッジ日時 2024-06-22 14:25:29
合計ジャッジ時間 3,224 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 38 ms
12,160 KB
testcase_04 AC 111 ms
24,736 KB
testcase_05 AC 111 ms
24,604 KB
testcase_06 AC 111 ms
24,548 KB
testcase_07 AC 111 ms
24,552 KB
testcase_08 AC 109 ms
24,560 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 92 ms
24,608 KB
testcase_11 AC 93 ms
24,432 KB
testcase_12 AC 92 ms
24,476 KB
testcase_13 AC 92 ms
24,432 KB
testcase_14 AC 92 ms
24,604 KB
testcase_15 AC 92 ms
24,692 KB
testcase_16 AC 93 ms
24,556 KB
testcase_17 AC 93 ms
24,604 KB
testcase_18 AC 29 ms
10,880 KB
testcase_19 AC 111 ms
25,476 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 103 ms
21,500 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 WA -
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 29 ms
10,880 KB
testcase_29 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

Sa = sum(A)
Sb = sum(B)

ans = -1
if N == 2:
    if Sa == Sb:
        ans = abs(A[0]-B[0])
elif Sa >= Sb and (Sa-Sb)%(N-2) == 0:
    ans = (Sa-Sb)//(N-2)
    for a, b in zip(A, B):
        if b < a - ans:
            ans = -1
            break

print(ans)
0