結果

問題 No.3 ビットすごろく
ユーザー irisAshirisAsh
提出日時 2017-08-14 22:51:37
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 158 ms / 5,000 ms
コード長 628 bytes
コンパイル時間 60 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 45,440 KB
最終ジャッジ日時 2024-07-01 08:48:09
合計ジャッジ時間 5,536 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
39,040 KB
testcase_01 AC 65 ms
39,040 KB
testcase_02 AC 64 ms
39,040 KB
testcase_03 AC 158 ms
43,520 KB
testcase_04 AC 67 ms
42,624 KB
testcase_05 AC 91 ms
44,928 KB
testcase_06 AC 75 ms
43,648 KB
testcase_07 AC 72 ms
43,136 KB
testcase_08 AC 88 ms
44,800 KB
testcase_09 AC 107 ms
45,176 KB
testcase_10 AC 114 ms
44,928 KB
testcase_11 AC 102 ms
45,312 KB
testcase_12 AC 92 ms
44,800 KB
testcase_13 AC 74 ms
43,648 KB
testcase_14 AC 113 ms
44,928 KB
testcase_15 AC 128 ms
45,184 KB
testcase_16 AC 124 ms
45,312 KB
testcase_17 AC 127 ms
45,312 KB
testcase_18 AC 72 ms
43,008 KB
testcase_19 AC 131 ms
45,312 KB
testcase_20 AC 68 ms
42,496 KB
testcase_21 AC 65 ms
39,168 KB
testcase_22 AC 113 ms
45,056 KB
testcase_23 AC 128 ms
45,440 KB
testcase_24 AC 128 ms
45,184 KB
testcase_25 AC 128 ms
45,184 KB
testcase_26 AC 64 ms
39,296 KB
testcase_27 AC 75 ms
43,520 KB
testcase_28 AC 122 ms
45,184 KB
testcase_29 AC 105 ms
45,304 KB
testcase_30 AC 64 ms
39,296 KB
testcase_31 AC 64 ms
39,168 KB
testcase_32 AC 101 ms
45,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let i = require('fs').readFileSync('/dev/stdin', 'utf8').split('\n')[0]
let a = []
for (let c = 1; c <= i; c++) {
  let n = 0
  c.toString(2).split('').forEach((e) => e === '1' ? n++ : n)
  a.push(n)
}
let q = [0]
let m = [0]
let d = 1
let r = false
while (q.length > 0) {
  if (m.indexOf(a.length - 1) > -1) {
    r = true
    break
  }
  d++
  let t = q.concat()
  q = []
  t.forEach((e) => {
    let f = e + a[e]
    let b = e - a[e]
    if (f < a.length && m.indexOf(f) == -1) {
      m.push(f)
      q.push(f)
    }
    if (b > 0 && m.indexOf(b) == -1) {
      m.push(b)
      q.push(b)
    }
  })
}
console.log(r ? d : -1)
0