結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 92 ms
12,288 KB
testcase_02 AC 88 ms
12,288 KB
testcase_03 AC 98 ms
12,928 KB
testcase_04 AC 205 ms
26,752 KB
testcase_05 AC 200 ms
26,752 KB
testcase_06 AC 199 ms
25,984 KB
testcase_07 AC 198 ms
26,624 KB
testcase_08 AC 201 ms
26,112 KB
testcase_09 AC 89 ms
12,160 KB
testcase_10 AC 166 ms
25,728 KB
testcase_11 AC 164 ms
25,216 KB
testcase_12 AC 165 ms
26,112 KB
testcase_13 AC 166 ms
25,856 KB
testcase_14 AC 163 ms
25,216 KB
testcase_15 AC 166 ms
25,216 KB
testcase_16 AC 172 ms
26,240 KB
testcase_17 AC 174 ms
26,112 KB
testcase_18 AC 88 ms
12,160 KB
testcase_19 AC 201 ms
26,880 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 88 ms
12,416 KB
testcase_23 AC 88 ms
12,160 KB
testcase_24 AC 202 ms
26,240 KB
testcase_25 RE -
testcase_26 AC 88 ms
12,288 KB
testcase_27 AC 88 ms
12,160 KB
testcase_28 AC 88 ms
12,160 KB
testcase_29 AC 88 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:9: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:15: 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

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

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