結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
35,336 KB
testcase_01 WA -
testcase_02 AC 340 ms
35,460 KB
testcase_03 AC 340 ms
35,816 KB
testcase_04 WA -
testcase_05 AC 342 ms
35,320 KB
testcase_06 AC 341 ms
35,956 KB
testcase_07 AC 344 ms
35,504 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 342 ms
35,760 KB
testcase_13 AC 342 ms
36,060 KB
testcase_14 AC 343 ms
35,724 KB
testcase_15 AC 344 ms
35,644 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 342 ms
35,516 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 340 ms
35,464 KB
testcase_22 AC 339 ms
36,088 KB
testcase_23 AC 342 ms
36,312 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 344 ms
35,200 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (236 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 N = int <| stdin.ReadLine()
    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 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 not(1 <= nm && cash.[nm]) then
                failwith "-1"
            else
                yield nm
                yield! s nm
        else
            yield np
            yield! s np
        }
    try
        s 0 |> Seq.length
    with
    | _ -> -1
    |> printfn "%d"
0