結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | tak |
提出日時 | 2019-04-28 13:41:09 |
言語 | F# (F# 4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,520 bytes |
コンパイル時間 | 16,895 ms |
コンパイル使用メモリ | 185,624 KB |
実行使用メモリ | 40,448 KB |
最終ジャッジ日時 | 2024-12-16 02:25:09 |
合計ジャッジ時間 | 15,562 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 68 ms
29,952 KB |
testcase_01 | AC | 70 ms
30,196 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 72 ms
30,720 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 87 ms
36,992 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 93 ms
39,168 KB |
testcase_14 | AC | 96 ms
40,320 KB |
testcase_15 | AC | 95 ms
39,932 KB |
testcase_16 | WA | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (636 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/
ソースコード
#nowarn "40" open System module Prime = let isPrimes max = let isPrime = Array.init (max + 1) (fun _ -> true) isPrime.[0] <- false isPrime.[1] <- false for i in 2 .. max do if isPrime.[i] then for j in 2 * i .. i .. max do isPrime.[j] <- false else () isPrime let primeNums max = let isPrimes = isPrimes max [ for i in 0 .. max do if isPrimes.[i] then yield i ] let memoize f = let memo = new Collections.Generic.Dictionary<_,_>() (fun x -> match memo.TryGetValue x with | true, v -> v | _ -> memo.[x] <- f x memo.[x]) let isWinable n = let primes = Prime.primeNums n let rec dfs = let inter = memoize (fun (num, isMyTurn) -> match num, isMyTurn with | x, _ when x < 0 -> failwith "Error" | 0, true | 1, true -> true | 0, false | 1, false -> false | x, turn when x = n -> primes |> Seq.where(fun p -> x - p >= 0) |> Seq.exists (fun y -> dfs (x - y, not turn)) | x, turn -> primes |> Seq.where(fun p -> x - p >= 0) |> Seq.forall (fun y -> dfs (x - y, not turn))) inter dfs (n, true) let N = Console.ReadLine() |> int isWinable N |> function | true -> "Win" | _ -> "Lose" |> Console.WriteLine