結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 129 ms
24,512 KB
testcase_05 AC 121 ms
24,512 KB
testcase_06 AC 116 ms
24,500 KB
testcase_07 AC 113 ms
24,644 KB
testcase_08 AC 117 ms
24,596 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 165 ms
25,284 KB
testcase_11 AC 162 ms
25,280 KB
testcase_12 AC 155 ms
25,408 KB
testcase_13 AC 139 ms
24,424 KB
testcase_14 AC 135 ms
24,516 KB
testcase_15 AC 112 ms
24,512 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 108 ms
24,884 KB
testcase_20 AC 25 ms
10,752 KB
testcase_21 AC 25 ms
10,880 KB
testcase_22 AC 25 ms
10,880 KB
testcase_23 AC 25 ms
10,880 KB
testcase_24 AC 107 ms
21,680 KB
testcase_25 AC 26 ms
10,880 KB
testcase_26 AC 25 ms
10,880 KB
testcase_27 AC 25 ms
10,880 KB
testcase_28 AC 25 ms
10,880 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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]
res = 0.0

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

if res.is_integer():
    r = int(res)
    if abs(t) == r:
        print(r)
    elif r == 0 and abs(t) % (N-2) == 0:
        print((abs(t) // (N - 2)) * N)
    elif (r - abs(t)) % (N - 2) == 0:
        print(r + (r - abs(t)) // (N - 2))
    else:
        print(-1)
else:
    print(-1)
0