結果

問題 No.1120 Strange Teacher
ユーザー roarisroaris
提出日時 2020-07-24 21:28:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 414 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 103,040 KB
最終ジャッジ日時 2024-06-25 20:33:40
合計ジャッジ時間 4,541 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
51,968 KB
testcase_01 AC 52 ms
51,968 KB
testcase_02 AC 50 ms
58,368 KB
testcase_03 AC 56 ms
65,408 KB
testcase_04 AC 100 ms
102,656 KB
testcase_05 AC 98 ms
102,932 KB
testcase_06 AC 97 ms
102,716 KB
testcase_07 AC 97 ms
102,700 KB
testcase_08 AC 99 ms
102,852 KB
testcase_09 AC 38 ms
52,276 KB
testcase_10 AC 87 ms
101,504 KB
testcase_11 AC 87 ms
101,368 KB
testcase_12 AC 89 ms
101,632 KB
testcase_13 AC 95 ms
102,656 KB
testcase_14 AC 96 ms
102,656 KB
testcase_15 AC 95 ms
102,908 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 38 ms
52,224 KB
testcase_19 AC 102 ms
99,332 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 38 ms
52,004 KB
testcase_23 AC 39 ms
52,096 KB
testcase_24 AC 97 ms
102,884 KB
testcase_25 AC 41 ms
52,352 KB
testcase_26 AC 40 ms
51,968 KB
testcase_27 AC 39 ms
52,096 KB
testcase_28 AC 39 ms
52,096 KB
testcase_29 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = [B[i]-A[i] for i in range(N)]
D = []

for i in range(1, N):
    if (C[0]-C[i])%2==1:
        print(-1)
        exit()
    
    D.append((C[0]-C[i])//2)

S = sum(D)

if (S-C[0])%(N-2)!=0:
    print(-1)
    exit()

x = (S-C[0])//(N-2)
ans = x

for Di in D:
    ans += x-Di

print(ans)
0