結果

問題 No.7 プライムナンバーゲーム
ユーザー pocaristpocarist
提出日時 2015-09-11 12:45:17
言語 F#
(F# 4.0)
結果
AC  
実行時間 166 ms / 5,000 ms
コード長 1,211 bytes
コンパイル時間 14,357 ms
コンパイル使用メモリ 197,296 KB
実行使用メモリ 33,152 KB
最終ジャッジ日時 2024-10-01 15:36:55
合計ジャッジ時間 16,944 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
30,592 KB
testcase_01 AC 70 ms
30,592 KB
testcase_02 AC 166 ms
33,152 KB
testcase_03 AC 82 ms
31,232 KB
testcase_04 AC 76 ms
31,104 KB
testcase_05 AC 74 ms
30,720 KB
testcase_06 AC 105 ms
31,616 KB
testcase_07 AC 91 ms
31,616 KB
testcase_08 AC 80 ms
31,104 KB
testcase_09 AC 115 ms
32,128 KB
testcase_10 AC 71 ms
30,464 KB
testcase_11 AC 92 ms
31,872 KB
testcase_12 AC 142 ms
32,640 KB
testcase_13 AC 144 ms
32,884 KB
testcase_14 AC 166 ms
33,152 KB
testcase_15 AC 163 ms
33,024 KB
testcase_16 AC 159 ms
33,024 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (346 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 #

// http://yukicoder.me/problems/25
open System

let dprintfn fmt = Printf.kprintf Diagnostics.Debug.WriteLine fmt

let primes n =
    let mid = float n |> sqrt |> floor |> int
    let table = Array.init (n+1) (fun _ -> true)
    seq {
        for i in 2 .. mid do
            if table.[i] then
                yield i
                for j in (i+i) .. i .. n do
                    table.[j] <- false
        for i in (mid+1) .. n do
            if table.[i] then
                yield i
    }

[<EntryPoint>]
let main argv = 
    let N = Console.ReadLine().Trim() |> int
    let P = primes N |> List.ofSeq
    let memo = Array.init (N+1) (fun _ -> None)
    let rec solve n =
        if n < 2 then true else
        match memo.[n] with
        | Some ans -> ans
        | None ->
            P
            |> List.tryFind (fun p -> 
                                if p <= n then not (solve (n-p))
                                else false)
            |> function
            | None ->
                memo.[n] <- Some false; false
            | Some ans -> 
                memo.[n] <- Some true; true
                
    match solve N with
    | true -> "Win"
    | _ -> "Lose"
    |> printfn "%s"
    0 
0