結果

問題 No.1120 Strange Teacher
ユーザー 👑 KazunKazun
提出日時 2020-10-31 19:48:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 1,000 ms
コード長 396 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 103,008 KB
最終ジャッジ日時 2024-07-22 05:12:03
合計ジャッジ時間 4,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,644 KB
testcase_01 AC 37 ms
52,620 KB
testcase_02 AC 39 ms
59,212 KB
testcase_03 AC 45 ms
64,208 KB
testcase_04 AC 88 ms
102,676 KB
testcase_05 AC 82 ms
102,660 KB
testcase_06 AC 84 ms
102,892 KB
testcase_07 AC 85 ms
103,008 KB
testcase_08 AC 84 ms
102,564 KB
testcase_09 AC 36 ms
52,260 KB
testcase_10 AC 81 ms
102,756 KB
testcase_11 AC 81 ms
102,644 KB
testcase_12 AC 83 ms
102,872 KB
testcase_13 AC 80 ms
102,788 KB
testcase_14 AC 82 ms
102,652 KB
testcase_15 AC 80 ms
102,820 KB
testcase_16 AC 82 ms
102,516 KB
testcase_17 AC 82 ms
102,356 KB
testcase_18 AC 37 ms
51,808 KB
testcase_19 AC 82 ms
98,980 KB
testcase_20 AC 36 ms
52,660 KB
testcase_21 AC 37 ms
52,656 KB
testcase_22 AC 36 ms
52,940 KB
testcase_23 AC 35 ms
52,956 KB
testcase_24 AC 78 ms
101,380 KB
testcase_25 AC 37 ms
52,092 KB
testcase_26 AC 36 ms
52,848 KB
testcase_27 AC 39 ms
52,800 KB
testcase_28 AC 35 ms
53,120 KB
testcase_29 AC 36 ms
52,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

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

if N==2:
    if sum(A)==sum(B):
        print(abs(A[0]-B[0]))
    else:
        print(-1)
    exit()

D=[B[i]-A[i] for i in range(N)]
X=-sum(D)

P=0
for d in D:
    y=X+(N-2)*d
    if not(y>=0 and y%(2*(N-2))==0):
        print(-1)
        exit()

    P+=y//(2*(N-2))

print(P)
0