結果
問題 | No.3 ビットすごろく |
ユーザー | DialBird |
提出日時 | 2018-05-09 10:43:01 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 459 bytes |
コンパイル時間 | 91 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 133,376 KB |
最終ジャッジ日時 | 2024-06-28 02:39:05 |
合計ジャッジ時間 | 6,981 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
def bit_count(n) cnt = 0 while 0 < n n &= n - 1 cnt += 1 end cnt end def main n = gets.to_i dp = Array.new(10001, 0) dp[0] = 1 queue = [1] while 0 < queue.length pos = queue.shift bc = bit_count(pos) [pos + bc, pos - bc].each do |next_pos| next if next_pos < 2 && 10000 < next_pos return dp[pos] + 1 if next_pos == n dp[next_pos] = dp[pos] + 1 queue << next_pos end end -1 end puts main