結果

問題 No.968 引き算をして門松列(その3)
ユーザー 0w10w1
提出日時 2020-01-16 15:06:44
言語 Ruby
(3.3.0)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-06-23 19:07:31
合計ジャッジ時間 3,495 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,160 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 168 ms
12,288 KB
testcase_04 AC 169 ms
12,544 KB
testcase_05 AC 168 ms
12,544 KB
testcase_06 AC 169 ms
12,544 KB
testcase_07 AC 169 ms
12,288 KB
testcase_08 AC 216 ms
12,416 KB
testcase_09 AC 286 ms
12,416 KB
testcase_10 AC 288 ms
12,544 KB
testcase_11 AC 286 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

t = gets.to_i
t.times do
  a, b, c, x, y, z = gets.split.map &:to_i

  d = [[0, 2, 1], [1, 0, 2], [1, 2, 0], [2, 0, 1]].map { |r|
    ps = (0...3).map { |i| r.find_index { |v| v == i } }
    vs = (0...3).map { |i| [a, b, c][ps[i]] }
    cs = (0...3).map { |i| [y, z, x][ps[i]] }
    s, t, u, v = *vs, 0
    if t <= s
      q = s + 1 - t
      v += q * cs[1]
      s -= q
      u -= q
    end
    if u <= t
      q = t + 1 - u
      v += q * cs[2]
      s -= q
      t -= q
    end
    next Float::INFINITY if [s, t, u].any? { |q| q < 1 }
    v
  } .min

  d = -1 if d == Float::INFINITY
  puts d
end
0