結果

問題 No.3 ビットすごろく
ユーザー hacchahaccha
提出日時 2023-06-22 19:14:28
言語 Ruby
(3.3.0)
結果
AC  
実行時間 190 ms / 5,000 ms
コード長 348 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-06-30 01:44:37
合計ジャッジ時間 5,462 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,288 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 85 ms
12,288 KB
testcase_03 AC 102 ms
13,184 KB
testcase_04 AC 93 ms
12,160 KB
testcase_05 AC 126 ms
13,312 KB
testcase_06 AC 101 ms
13,312 KB
testcase_07 AC 95 ms
12,416 KB
testcase_08 AC 119 ms
13,312 KB
testcase_09 AC 145 ms
13,440 KB
testcase_10 AC 176 ms
13,312 KB
testcase_11 AC 139 ms
13,440 KB
testcase_12 AC 125 ms
13,568 KB
testcase_13 AC 96 ms
12,928 KB
testcase_14 AC 166 ms
13,312 KB
testcase_15 AC 188 ms
13,568 KB
testcase_16 AC 183 ms
13,440 KB
testcase_17 AC 183 ms
13,696 KB
testcase_18 AC 95 ms
12,544 KB
testcase_19 AC 187 ms
13,696 KB
testcase_20 AC 89 ms
12,160 KB
testcase_21 AC 85 ms
12,032 KB
testcase_22 AC 167 ms
13,568 KB
testcase_23 AC 188 ms
13,312 KB
testcase_24 AC 190 ms
13,440 KB
testcase_25 AC 188 ms
13,312 KB
testcase_26 AC 85 ms
12,032 KB
testcase_27 AC 98 ms
13,184 KB
testcase_28 AC 179 ms
13,696 KB
testcase_29 AC 140 ms
13,568 KB
testcase_30 AC 87 ms
12,032 KB
testcase_31 AC 86 ms
12,160 KB
testcase_32 AC 132 ms
13,568 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

$N = gets.to_i
$steps = Array.new($N, -1)

def popcount(n)
  n.digits(2).sum
end

def carol(n, curSteps)
  return if n <= 0 || n > $N

  if $steps[n-1] == -1 || $steps[n-1] > curSteps
     $steps[n-1] = curSteps
     counts = popcount(n)
     carol(n + counts, curSteps+1)
     carol(n - counts, curSteps+1)
  end
end

carol(1, 1)
puts $steps[$N-1]
0