結果

問題 No.3 ビットすごろく
ユーザー regeregeregerege
提出日時 2015-10-14 22:11:00
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 1,070 bytes
コンパイル時間 6,898 ms
コンパイル使用メモリ 195,904 KB
実行使用メモリ 36,584 KB
最終ジャッジ日時 2024-07-21 15:56:58
合計ジャッジ時間 19,669 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
35,332 KB
testcase_01 AC 341 ms
35,464 KB
testcase_02 AC 341 ms
35,844 KB
testcase_03 AC 342 ms
35,692 KB
testcase_04 AC 338 ms
35,620 KB
testcase_05 AC 340 ms
36,100 KB
testcase_06 AC 345 ms
35,744 KB
testcase_07 AC 342 ms
35,396 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 344 ms
35,536 KB
testcase_13 AC 341 ms
35,808 KB
testcase_14 AC 341 ms
35,472 KB
testcase_15 AC 339 ms
35,512 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 342 ms
35,140 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 340 ms
35,332 KB
testcase_22 AC 342 ms
35,356 KB
testcase_23 AC 344 ms
36,380 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 343 ms
35,336 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 343 ms
35,456 KB
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (241 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System.Collections
let ``No.3 ビットすごろく`` () =
    let bitcount (bit:int) =
        let a = (bit &&& 0x55555555) + (bit >>> 1 &&& 0x55555555) in
        let b = (a &&& 0x33333333) + (a >>> 2 &&& 0x33333333) in
        let c = (b &&& 0x0F0F0F0F) + (b >>> 4 &&& 0x0F0F0F0F) in
        let d = (c &&& 0x00FF00FF) + (c >>> 8 &&& 0x00FF00FF) in
        (d &&& 0x0000FFFF) + (d >>> 16 &&& 0x0000FFFF)
    let N = int <| stdin.ReadLine()
    let bits = [| yield 1; for i in 1..N -> bitcount i |]
    let cash = new BitArray(N)
    let rec s p = seq {
        let np = p + bits.[p]
        if np = N then yield np
        elif N < np then
            let nm = p - bits.[p]
            if 1 <= nm && not(cash.[nm]) then
                cash.[nm] <- true
                yield nm
                yield! s nm
            else
                failwith "-1"
        else
            cash.[np] <- true
            yield np
            yield! s np
        }
    try
        s 0 |> Seq.length
    with
    | _ -> -1
    |> printfn "%d"
``No.3 ビットすごろく`` ()
0