結果

問題 No.3 ビットすごろく
ユーザー regeregeregerege
提出日時 2015-10-17 07:56:45
言語 F#
(F# 4.0)
結果
AC  
実行時間 345 ms / 5,000 ms
コード長 957 bytes
コンパイル時間 6,824 ms
コンパイル使用メモリ 193,200 KB
実行使用メモリ 36,872 KB
最終ジャッジ日時 2024-07-01 07:34:19
合計ジャッジ時間 19,468 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
34,188 KB
testcase_01 AC 342 ms
35,116 KB
testcase_02 AC 339 ms
35,116 KB
testcase_03 AC 341 ms
35,080 KB
testcase_04 AC 338 ms
35,260 KB
testcase_05 AC 343 ms
35,688 KB
testcase_06 AC 341 ms
35,728 KB
testcase_07 AC 339 ms
35,196 KB
testcase_08 AC 342 ms
35,864 KB
testcase_09 AC 342 ms
36,156 KB
testcase_10 AC 343 ms
36,100 KB
testcase_11 AC 342 ms
35,772 KB
testcase_12 AC 341 ms
35,768 KB
testcase_13 AC 339 ms
35,460 KB
testcase_14 AC 341 ms
36,684 KB
testcase_15 AC 342 ms
36,620 KB
testcase_16 AC 344 ms
36,232 KB
testcase_17 AC 342 ms
36,752 KB
testcase_18 AC 338 ms
34,324 KB
testcase_19 AC 344 ms
36,372 KB
testcase_20 AC 338 ms
34,228 KB
testcase_21 AC 341 ms
34,720 KB
testcase_22 AC 343 ms
36,420 KB
testcase_23 AC 345 ms
36,872 KB
testcase_24 AC 344 ms
36,872 KB
testcase_25 AC 341 ms
36,736 KB
testcase_26 AC 336 ms
35,244 KB
testcase_27 AC 342 ms
35,208 KB
testcase_28 AC 340 ms
36,496 KB
testcase_29 AC 343 ms
35,640 KB
testcase_30 AC 339 ms
34,992 KB
testcase_31 AC 339 ms
34,744 KB
testcase_32 AC 340 ms
35,904 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (232 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 aa = [| yield 0; yield 1; for i in 2..N -> -1 |]
    let f2 f p p2 l =
        if f p2 && aa.[p2] = -1 then
            aa.[p2] <- aa.[p] + 1
            l@[p2]
        else l
    let rec f = function
        | p::ps ->
            if p = N then aa.[N]
            else
                let bc = bitcount p
                let ps = f2 ((<=)1) p (p-bc) ps
                let ps = f2 ((>=)N) p (p+bc) ps
                f ps
        | _ -> -1
    printfn "%d" <| f [1]
``No.3 ビットすごろく`` ()
0