結果

問題 No.3 ビットすごろく
ユーザー gemmarogemmaro
提出日時 2020-04-27 11:54:50
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 466 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 116,864 KB
最終ジャッジ日時 2024-11-21 11:21:25
合計ジャッジ時間 92,531 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
19,872 KB
testcase_01 AC 101 ms
93,824 KB
testcase_02 AC 98 ms
85,632 KB
testcase_03 AC 3,463 ms
54,304 KB
testcase_04 AC 150 ms
94,448 KB
testcase_05 TLE -
testcase_06 AC 4,265 ms
60,544 KB
testcase_07 AC 247 ms
14,592 KB
testcase_08 AC 1,054 ms
24,576 KB
testcase_09 AC 2,585 ms
44,544 KB
testcase_10 AC 3,447 ms
54,748 KB
testcase_11 AC 2,217 ms
40,064 KB
testcase_12 TLE -
testcase_13 AC 2,549 ms
37,632 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 4,395 ms
66,432 KB
testcase_17 AC 4,966 ms
72,960 KB
testcase_18 AC 283 ms
15,104 KB
testcase_19 TLE -
testcase_20 AC 116 ms
13,440 KB
testcase_21 AC 98 ms
13,056 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 WA -
testcase_27 AC 386 ms
16,384 KB
testcase_28 AC 4,365 ms
64,100 KB
testcase_29 AC 2,333 ms
40,576 KB
testcase_30 AC 95 ms
13,184 KB
testcase_31 AC 107 ms
13,312 KB
testcase_32 AC 2,035 ms
116,864 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

C = (0..10_000).map { |i| i.digits(2).sum }

# Current positions.
class Array
  def solve_rec(rst) # rubocop:todo Metrics/AbcSize
    if empty? || rst > N
      -1
    else
      # Avoid block chain is slow.
      m = map do |x|
        [x + C[x], x - C[x]]
      end.flatten.select { _1 > 1 && _1 <= N }.uniq
      m.include?(N) ? rst + 1 : m.solve_rec(rst + 1)
    end
  end
end

N = gets.to_i

RESULT = [1].solve_rec(1)

puts RESULT
0