結果

問題 No.1120 Strange Teacher
ユーザー yuruhiyayuruhiya
提出日時 2020-07-23 08:30:29
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 324 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-06-23 16:27:45
合計ジャッジ時間 5,464 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,160 KB
testcase_01 AC 82 ms
12,160 KB
testcase_02 AC 82 ms
12,288 KB
testcase_03 AC 95 ms
12,800 KB
testcase_04 AC 188 ms
26,112 KB
testcase_05 AC 186 ms
25,856 KB
testcase_06 AC 183 ms
25,984 KB
testcase_07 AC 184 ms
26,112 KB
testcase_08 AC 187 ms
26,112 KB
testcase_09 AC 80 ms
12,160 KB
testcase_10 AC 160 ms
25,088 KB
testcase_11 AC 158 ms
25,344 KB
testcase_12 AC 151 ms
25,088 KB
testcase_13 AC 155 ms
25,088 KB
testcase_14 AC 155 ms
25,088 KB
testcase_15 AC 154 ms
25,216 KB
testcase_16 AC 160 ms
26,112 KB
testcase_17 AC 160 ms
25,984 KB
testcase_18 AC 78 ms
12,160 KB
testcase_19 AC 180 ms
26,752 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 79 ms
12,160 KB
testcase_23 AC 78 ms
12,288 KB
testcase_24 AC 186 ms
26,496 KB
testcase_25 RE -
testcase_26 AC 80 ms
12,160 KB
testcase_27 AC 79 ms
12,288 KB
testcase_28 AC 79 ms
12,160 KB
testcase_29 AC 80 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:7: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:13: 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

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