結果

問題 No.1120 Strange Teacher
ユーザー takakintakakin
提出日時 2020-07-25 21:52:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 470 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 25,276 KB
最終ジャッジ日時 2024-06-27 16:52:12
合計ジャッジ時間 5,056 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 42 ms
12,160 KB
testcase_04 AC 159 ms
24,512 KB
testcase_05 AC 162 ms
24,336 KB
testcase_06 AC 157 ms
24,492 KB
testcase_07 AC 166 ms
24,336 KB
testcase_08 AC 162 ms
24,340 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 111 ms
25,024 KB
testcase_11 AC 109 ms
25,276 KB
testcase_12 AC 108 ms
25,024 KB
testcase_13 AC 108 ms
24,384 KB
testcase_14 AC 107 ms
24,384 KB
testcase_15 AC 109 ms
24,352 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 156 ms
24,700 KB
testcase_20 AC 30 ms
10,624 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 152 ms
21,632 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 30 ms
10,624 KB
testcase_27 AC 29 ms
10,624 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
A=[int(i) for i in input().split()]
B=[int(i) for i in input().split()]

if n==2:
	if sum(A)==sum(B):
		print(abs(A[0]-B[0]))
	else:
		print(-1)
else:
	d=sum(A)-sum(B)
	if d<0 or d%(n-2)!=0:
		print(-1)
	else:
		ans=d//(n-2)
		ct=0
		Chk=True
		for i in range(n):
			if (B[i]-A[i]+ans)%2!=0:
				Chk=False
			ct+=(B[i]-A[i]+ans)//2
		if Chk==False or ct!=ans:
			print(-1)
		else:
			print(ans)





0