結果

問題 No.1120 Strange Teacher
ユーザー wattaiheiwattaihei
提出日時 2020-07-22 21:44:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 102 ms / 1,000 ms
コード長 410 bytes
コンパイル時間 749 ms
コンパイル使用メモリ 10,712 KB
実行使用メモリ 24,256 KB
最終ジャッジ日時 2023-09-04 17:01:16
合計ジャッジ時間 4,050 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,892 KB
testcase_01 AC 15 ms
7,772 KB
testcase_02 AC 16 ms
8,336 KB
testcase_03 AC 23 ms
9,672 KB
testcase_04 AC 99 ms
23,500 KB
testcase_05 AC 100 ms
23,464 KB
testcase_06 AC 101 ms
23,424 KB
testcase_07 AC 99 ms
23,516 KB
testcase_08 AC 98 ms
23,516 KB
testcase_09 AC 15 ms
7,932 KB
testcase_10 AC 70 ms
24,228 KB
testcase_11 AC 71 ms
24,256 KB
testcase_12 AC 72 ms
24,164 KB
testcase_13 AC 70 ms
23,516 KB
testcase_14 AC 71 ms
23,432 KB
testcase_15 AC 71 ms
23,440 KB
testcase_16 AC 72 ms
23,496 KB
testcase_17 AC 72 ms
23,296 KB
testcase_18 AC 15 ms
7,760 KB
testcase_19 AC 102 ms
22,956 KB
testcase_20 AC 15 ms
7,896 KB
testcase_21 AC 16 ms
7,888 KB
testcase_22 AC 16 ms
7,896 KB
testcase_23 AC 16 ms
7,820 KB
testcase_24 AC 96 ms
19,832 KB
testcase_25 AC 16 ms
7,804 KB
testcase_26 AC 16 ms
7,888 KB
testcase_27 AC 15 ms
7,900 KB
testcase_28 AC 16 ms
7,804 KB
testcase_29 AC 16 ms
7,844 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 or (a - ans - b) % 2 != 0:
            ans = -1
            break

print(ans)
0