結果

問題 No.1120 Strange Teacher
ユーザー YukikazariYukikazari
提出日時 2020-07-22 23:02:15
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 614 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,820 KB
最終ジャッジ日時 2024-06-23 00:16:42
合計ジャッジ時間 3,896 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 121 ms
24,400 KB
testcase_05 AC 113 ms
24,384 KB
testcase_06 AC 105 ms
24,500 KB
testcase_07 AC 112 ms
24,468 KB
testcase_08 AC 108 ms
24,528 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 135 ms
24,640 KB
testcase_11 AC 134 ms
24,592 KB
testcase_12 AC 138 ms
24,592 KB
testcase_13 AC 129 ms
24,644 KB
testcase_14 AC 128 ms
24,464 KB
testcase_15 AC 114 ms
24,464 KB
testcase_16 AC 137 ms
24,520 KB
testcase_17 AC 125 ms
24,340 KB
testcase_18 AC 24 ms
10,880 KB
testcase_19 AC 103 ms
24,820 KB
testcase_20 AC 25 ms
10,752 KB
testcase_21 AC 24 ms
10,752 KB
testcase_22 AC 25 ms
10,752 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 25 ms
10,752 KB
testcase_26 AC 25 ms
10,752 KB
testcase_27 AC 26 ms
10,752 KB
testcase_28 AC 25 ms
10,752 KB
testcase_29 AC 24 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
    else:
        t = r
        res = calc()

        if res.is_integer():
            r = int(res)
            if abs(t) == r:
                result = r

print(result)
0