結果

問題 No.1120 Strange Teacher
ユーザー anagohirameanagohirame
提出日時 2020-07-22 22:25:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 1,000 ms
コード長 374 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 103,540 KB
最終ジャッジ日時 2024-06-22 19:03:51
合計ジャッジ時間 3,084 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,616 KB
testcase_01 AC 34 ms
52,884 KB
testcase_02 AC 38 ms
58,708 KB
testcase_03 AC 41 ms
63,848 KB
testcase_04 AC 81 ms
103,512 KB
testcase_05 AC 79 ms
102,936 KB
testcase_06 AC 80 ms
103,316 KB
testcase_07 AC 80 ms
103,408 KB
testcase_08 AC 79 ms
103,540 KB
testcase_09 AC 32 ms
52,360 KB
testcase_10 AC 74 ms
101,956 KB
testcase_11 AC 76 ms
101,488 KB
testcase_12 AC 76 ms
101,724 KB
testcase_13 AC 74 ms
101,624 KB
testcase_14 AC 74 ms
101,124 KB
testcase_15 AC 75 ms
101,172 KB
testcase_16 AC 75 ms
101,492 KB
testcase_17 AC 74 ms
101,192 KB
testcase_18 AC 36 ms
53,168 KB
testcase_19 AC 83 ms
100,784 KB
testcase_20 AC 34 ms
52,160 KB
testcase_21 AC 33 ms
52,272 KB
testcase_22 AC 33 ms
52,956 KB
testcase_23 AC 32 ms
52,332 KB
testcase_24 AC 78 ms
101,088 KB
testcase_25 AC 36 ms
52,948 KB
testcase_26 AC 35 ms
52,744 KB
testcase_27 AC 35 ms
52,288 KB
testcase_28 AC 34 ms
52,428 KB
testcase_29 AC 34 ms
52,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import exit
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()

s = sum(a) - sum(b)
if s % (n-2) != 0:
	print(-1)	
else:
	k = s // (n-2)
	for x, y in zip(a, b):
		z = y - x + k
		if z < 0 or z%2 != 0:
			print(-1)
			break
	else:
		print(k)
0