結果

問題 No.3 ビットすごろく
ユーザー らっしー(raccy)らっしー(raccy)
提出日時 2014-12-11 07:19:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 538 ms / 5,000 ms
コード長 866 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-01 07:09:37
合計ジャッジ時間 9,489 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,160 KB
testcase_01 AC 89 ms
12,288 KB
testcase_02 AC 89 ms
12,288 KB
testcase_03 AC 118 ms
12,160 KB
testcase_04 AC 93 ms
12,160 KB
testcase_05 AC 219 ms
12,160 KB
testcase_06 AC 124 ms
12,160 KB
testcase_07 AC 100 ms
12,160 KB
testcase_08 AC 170 ms
12,288 KB
testcase_09 AC 299 ms
12,288 KB
testcase_10 AC 391 ms
12,160 KB
testcase_11 AC 268 ms
12,416 KB
testcase_12 AC 210 ms
12,160 KB
testcase_13 AC 108 ms
12,288 KB
testcase_14 AC 371 ms
12,288 KB
testcase_15 AC 529 ms
12,288 KB
testcase_16 AC 466 ms
12,416 KB
testcase_17 AC 509 ms
12,160 KB
testcase_18 AC 102 ms
12,416 KB
testcase_19 AC 536 ms
12,288 KB
testcase_20 AC 95 ms
12,288 KB
testcase_21 AC 92 ms
12,416 KB
testcase_22 AC 380 ms
12,288 KB
testcase_23 AC 535 ms
12,288 KB
testcase_24 AC 538 ms
12,288 KB
testcase_25 AC 525 ms
12,416 KB
testcase_26 AC 88 ms
12,288 KB
testcase_27 AC 111 ms
12,160 KB
testcase_28 AC 449 ms
12,416 KB
testcase_29 AC 270 ms
12,160 KB
testcase_30 AC 88 ms
12,160 KB
testcase_31 AC 88 ms
12,416 KB
testcase_32 AC 243 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class BitSugoroku
  def initialize(n)
    @n = n
  end

  def saitan
    if @n == 1
      return 1
    end
    i = 1
    kazoeta = [1]
    list = [1]
    while list.size > 0
      i += 1
      next_list = []
      list.each do |x|
        bits = num_bit(x)
        add_n = x + bits
        del_n = x - bits
        if add_n == @n
          return i
        elsif (add_n < @n) && (! kazoeta.include?(add_n))
          kazoeta << add_n
          next_list << add_n
        end
        if (! kazoeta.include?(del_n))
          kazoeta << del_n
          next_list << del_n
        end
      end
      list = next_list
    end
    return -1
  end

  def num_bit(x)
    count = 0
    while x > 0
      count += x & 1
      x = x >> 1
    end
    return count
  end
end

n = gets.to_i
bs = BitSugoroku.new(n)
puts bs.saitan
0