結果

問題 No.1120 Strange Teacher
ユーザー tomeruntomerun
提出日時 2020-07-22 21:42:39
言語 Crystal
(1.11.2)
結果
AC  
実行時間 29 ms / 1,000 ms
コード長 388 bytes
コンパイル時間 11,517 ms
コンパイル使用メモリ 296,628 KB
実行使用メモリ 17,332 KB
最終ジャッジ日時 2024-06-30 20:42:15
合計ジャッジ時間 14,210 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 5 ms
6,940 KB
testcase_04 AC 28 ms
16,112 KB
testcase_05 AC 28 ms
16,620 KB
testcase_06 AC 29 ms
17,332 KB
testcase_07 AC 28 ms
16,700 KB
testcase_08 AC 28 ms
16,496 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 27 ms
16,628 KB
testcase_11 AC 27 ms
16,240 KB
testcase_12 AC 27 ms
16,700 KB
testcase_13 AC 27 ms
16,748 KB
testcase_14 AC 28 ms
15,380 KB
testcase_15 AC 28 ms
15,384 KB
testcase_16 AC 27 ms
17,208 KB
testcase_17 AC 28 ms
16,372 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 29 ms
16,832 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 24 ms
12,812 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,948 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
a = read_line.split.map(&.to_i64)
b = read_line.split.map(&.to_i64)
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