結果

問題 No.1120 Strange Teacher
ユーザー YukikazariYukikazari
提出日時 2020-07-22 23:42:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 982 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,392 KB
最終ジャッジ日時 2024-06-23 01:49:06
合計ジャッジ時間 4,054 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 135 ms
24,548 KB
testcase_05 AC 129 ms
24,372 KB
testcase_06 AC 122 ms
24,532 KB
testcase_07 AC 122 ms
24,544 KB
testcase_08 AC 120 ms
24,368 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 160 ms
25,316 KB
testcase_11 AC 159 ms
25,392 KB
testcase_12 AC 159 ms
25,188 KB
testcase_13 AC 170 ms
24,372 KB
testcase_14 AC 164 ms
24,500 KB
testcase_15 AC 143 ms
24,500 KB
testcase_16 AC 171 ms
24,540 KB
testcase_17 AC 164 ms
24,496 KB
testcase_18 AC 29 ms
10,880 KB
testcase_19 AC 115 ms
24,868 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 131 ms
21,580 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 29 ms
10,880 KB
testcase_28 AC 31 ms
10,880 KB
testcase_29 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

diff = []

for i in range(N):
    t = B[i] - A[i]

    diff.append(t)

diff.sort()

t = diff[0]

def calc():
    res = 0.0
    for obj in diff:
        if obj == t:
            pass
        else:
            res += (abs(t) + obj) / 2

    return res

res = calc()
result = -1

if res.is_integer():
    r = int(res)
    if abs(t) == r:
        result = r
    elif r == 0:
        t = t // (N-2) * N
        res = calc()
        if res.is_integer():
            r = int(res)
            if abs(t) == r:
                result = abs(r)

    else:
        ta = -diff[0] + diff[N - 1]
        if ta >= 0:
            tt = ta * (N-2)
            for i in range(N):
                diff[i] += tt

            t = diff[0]
            res = calc()
            if res.is_integer():
                r = int(res)
                if abs(t) == r:
                    result = abs(r + ta * N)

print(result)
0