結果

問題 No.1120 Strange Teacher
ユーザー simansiman
提出日時 2021-12-07 05:29:45
言語 Ruby
(3.3.0)
結果
AC  
実行時間 159 ms / 1,000 ms
コード長 428 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 31,616 KB
最終ジャッジ日時 2024-07-07 10:17:02
合計ジャッジ時間 4,970 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
12,160 KB
testcase_01 AC 70 ms
12,160 KB
testcase_02 AC 73 ms
12,288 KB
testcase_03 AC 79 ms
12,672 KB
testcase_04 AC 157 ms
31,232 KB
testcase_05 AC 158 ms
30,720 KB
testcase_06 AC 159 ms
30,720 KB
testcase_07 AC 157 ms
31,232 KB
testcase_08 AC 158 ms
30,848 KB
testcase_09 AC 71 ms
12,032 KB
testcase_10 AC 132 ms
25,472 KB
testcase_11 AC 132 ms
25,088 KB
testcase_12 AC 131 ms
25,472 KB
testcase_13 AC 135 ms
25,344 KB
testcase_14 AC 136 ms
24,960 KB
testcase_15 AC 140 ms
25,344 KB
testcase_16 AC 153 ms
30,976 KB
testcase_17 AC 152 ms
31,104 KB
testcase_18 AC 70 ms
12,288 KB
testcase_19 AC 157 ms
31,616 KB
testcase_20 AC 70 ms
12,288 KB
testcase_21 AC 69 ms
12,032 KB
testcase_22 AC 70 ms
12,160 KB
testcase_23 AC 70 ms
12,032 KB
testcase_24 AC 155 ms
30,848 KB
testcase_25 AC 70 ms
12,288 KB
testcase_26 AC 73 ms
12,160 KB
testcase_27 AC 72 ms
12,288 KB
testcase_28 AC 71 ms
12,160 KB
testcase_29 AC 71 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:11: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:21: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:24: 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)
S_A = A.sum
S_B = B.sum

if N == 2
  if S_A == S_B
    puts (A[0] - B[0]).abs
  else
    puts -1
  end
else
  if S_A >= S_B && (S_A - S_B) % (N - 2) == 0
    v = (S_A - S_B) / (N - 2)
    P = A.zip(B).map { |a, b| b - (a - v) }

    if P.all? { |x| x >= 0 && x.even? } && P.sum == 2 * v
      puts v
    else
      puts -1
    end
  else
    puts -1
  end
end
0