結果

問題 No.1120 Strange Teacher
ユーザー tomeruntomerun
提出日時 2020-07-22 21:44:35
言語 Ruby
(3.3.0)
結果
AC  
実行時間 170 ms / 1,000 ms
コード長 380 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 26,880 KB
最終ジャッジ日時 2024-06-22 15:06:27
合計ジャッジ時間 5,010 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,160 KB
testcase_01 AC 80 ms
12,160 KB
testcase_02 AC 76 ms
12,416 KB
testcase_03 AC 90 ms
12,672 KB
testcase_04 AC 168 ms
26,624 KB
testcase_05 AC 167 ms
26,496 KB
testcase_06 AC 164 ms
25,856 KB
testcase_07 AC 166 ms
26,624 KB
testcase_08 AC 166 ms
26,752 KB
testcase_09 AC 78 ms
12,160 KB
testcase_10 AC 146 ms
25,216 KB
testcase_11 AC 149 ms
25,344 KB
testcase_12 AC 170 ms
25,728 KB
testcase_13 AC 142 ms
25,216 KB
testcase_14 AC 141 ms
25,728 KB
testcase_15 AC 142 ms
25,728 KB
testcase_16 AC 160 ms
26,368 KB
testcase_17 AC 153 ms
26,368 KB
testcase_18 AC 74 ms
12,288 KB
testcase_19 AC 163 ms
26,880 KB
testcase_20 AC 76 ms
12,032 KB
testcase_21 AC 75 ms
12,416 KB
testcase_22 AC 74 ms
12,160 KB
testcase_23 AC 73 ms
12,160 KB
testcase_24 AC 166 ms
26,240 KB
testcase_25 AC 77 ms
12,288 KB
testcase_26 AC 76 ms
12,288 KB
testcase_27 AC 76 ms
12,288 KB
testcase_28 AC 75 ms
12,160 KB
testcase_29 AC 74 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:7: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

n = readline.to_i
a = readline.split.map(&:to_i)
b = readline.split.map(&:to_i)
sa = a.sum
sb = b.sum
if sa < sb || (n == 2 && sa != sb) || (n > 2 && (sa - sb) % (n - 2) != 0)
  puts -1
else
  if n == 2
    puts (a[0] - b[0]).abs
  else
    c = (sa - sb) / (n - 2)
    a = a.map { |v| v - c }
    puts (0...n).any? { |i| a[i] > b[i] || (b[i] - a[i]) % 2 != 0 } ? -1 : c
  end
end
0