結果

問題 No.3 ビットすごろく
ユーザー jcm_2jcm_2
提出日時 2019-08-14 01:19:00
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 270 ms / 5,000 ms
コード長 493 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 7,200 KB
実行使用メモリ 47,096 KB
最終ジャッジ日時 2024-07-01 09:28:22
合計ジャッジ時間 7,576 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
39,296 KB
testcase_01 AC 66 ms
39,168 KB
testcase_02 AC 68 ms
39,552 KB
testcase_03 AC 145 ms
45,184 KB
testcase_04 AC 76 ms
44,032 KB
testcase_05 AC 144 ms
45,312 KB
testcase_06 AC 96 ms
44,920 KB
testcase_07 AC 84 ms
44,800 KB
testcase_08 AC 130 ms
45,184 KB
testcase_09 AC 176 ms
45,056 KB
testcase_10 AC 247 ms
45,312 KB
testcase_11 AC 168 ms
47,096 KB
testcase_12 AC 138 ms
45,056 KB
testcase_13 AC 89 ms
44,800 KB
testcase_14 AC 223 ms
45,184 KB
testcase_15 AC 261 ms
45,160 KB
testcase_16 AC 255 ms
45,184 KB
testcase_17 AC 262 ms
45,184 KB
testcase_18 AC 85 ms
44,912 KB
testcase_19 AC 267 ms
45,176 KB
testcase_20 AC 71 ms
40,064 KB
testcase_21 AC 65 ms
39,296 KB
testcase_22 AC 231 ms
45,184 KB
testcase_23 AC 270 ms
45,432 KB
testcase_24 AC 265 ms
45,180 KB
testcase_25 AC 264 ms
45,160 KB
testcase_26 AC 65 ms
39,168 KB
testcase_27 AC 91 ms
45,056 KB
testcase_28 AC 247 ms
45,312 KB
testcase_29 AC 167 ms
45,056 KB
testcase_30 AC 64 ms
39,424 KB
testcase_31 AC 67 ms
41,464 KB
testcase_32 AC 151 ms
45,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
  function countTarget(str, target) {
    return (str.match(new RegExp(target, "g")) || []).length;
  }
  function rec(num, c) {
    if (array[num] && array[num] <= c || num > N) return
    array[num] = c
    const k = countTarget(num.toString(2), "1")
    rec(num + k, c + 1)
    rec(num - k, c + 1)
  }
  const N = parseInt(input.trim())
  let array = [-1, 1]
  rec(2, 2)
  console.log(array[N] ? array[N] : -1)
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"))
0