結果

問題 No.1120 Strange Teacher
ユーザー yuruhiyayuruhiya
提出日時 2020-07-23 08:33:00
言語 Ruby
(3.3.0)
結果
AC  
実行時間 202 ms / 1,000 ms
コード長 407 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,008 KB
最終ジャッジ日時 2024-06-23 16:30:12
合計ジャッジ時間 5,327 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 99 ms
12,928 KB
testcase_04 AC 199 ms
26,112 KB
testcase_05 AC 201 ms
26,624 KB
testcase_06 AC 202 ms
25,856 KB
testcase_07 AC 201 ms
26,752 KB
testcase_08 AC 200 ms
26,752 KB
testcase_09 AC 87 ms
12,160 KB
testcase_10 AC 164 ms
25,856 KB
testcase_11 AC 162 ms
25,216 KB
testcase_12 AC 164 ms
25,856 KB
testcase_13 AC 166 ms
25,984 KB
testcase_14 AC 164 ms
25,856 KB
testcase_15 AC 166 ms
25,472 KB
testcase_16 AC 171 ms
26,496 KB
testcase_17 AC 173 ms
26,496 KB
testcase_18 AC 88 ms
12,288 KB
testcase_19 AC 200 ms
27,008 KB
testcase_20 AC 91 ms
12,160 KB
testcase_21 AC 87 ms
12,288 KB
testcase_22 AC 88 ms
12,416 KB
testcase_23 AC 87 ms
12,160 KB
testcase_24 AC 198 ms
26,496 KB
testcase_25 AC 87 ms
12,160 KB
testcase_26 AC 88 ms
12,416 KB
testcase_27 AC 89 ms
12,160 KB
testcase_28 AC 89 ms
12,160 KB
testcase_29 AC 88 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:12: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:18: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

n = gets.to_i
a = gets.split.map &:to_i
b = gets.split.map &:to_i

if n == 2
	puts (a[0] - b[0]) == (b[1] - a[1]) ? (a[0] - b[0]).abs : -1
	exit
end

minus = a.sum - b.sum
if minus % (n - 2) != 0
	puts -1
	exit
end
cnt = minus / (n - 2)
a = a.map { |i| i -= cnt }
if (0...n).any? { |i| a[i] > b[i] || (b[i] - a[i]) % 2 == 1 }
	puts -1
	exit
end

puts (0...n).sum { |i| (b[i] - a[i]) / 2 } == cnt ? cnt : -1
0