結果

問題 No.7 プライムナンバーゲーム
ユーザー guriceringuricerin
提出日時 2020-01-15 15:32:45
言語 F#
(F# 4.0)
結果
AC  
実行時間 185 ms / 5,000 ms
コード長 3,392 bytes
コンパイル時間 10,368 ms
コンパイル使用メモリ 194,140 KB
実行使用メモリ 29,824 KB
最終ジャッジ日時 2024-04-09 04:48:41
合計ジャッジ時間 14,402 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 184 ms
29,568 KB
testcase_01 AC 184 ms
29,440 KB
testcase_02 AC 185 ms
29,824 KB
testcase_03 AC 185 ms
29,568 KB
testcase_04 AC 184 ms
29,568 KB
testcase_05 AC 185 ms
29,568 KB
testcase_06 AC 184 ms
29,440 KB
testcase_07 AC 185 ms
29,568 KB
testcase_08 AC 185 ms
29,532 KB
testcase_09 AC 184 ms
29,564 KB
testcase_10 AC 184 ms
29,440 KB
testcase_11 AC 183 ms
29,696 KB
testcase_12 AC 185 ms
29,564 KB
testcase_13 AC 185 ms
29,568 KB
testcase_14 AC 184 ms
29,568 KB
testcase_15 AC 184 ms
29,568 KB
testcase_16 AC 184 ms
29,568 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /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
open System.Collections.Generic

[<AutoOpen>]
module Cin =
    let read f = stdin.ReadLine() |> f
    let reada f = stdin.ReadLine().Split() |> Array.map f
    let readChars() = read string |> Seq.toArray
    let readInts() = readChars() |> Array.map (fun x -> Convert.ToInt32(x.ToString()))

[<AutoOpen>]
module Cout =
    let writer = new IO.StreamWriter(new IO.BufferedStream(Console.OpenStandardOutput()))
    let print (s: string) = writer.Write s
    let println (s: string) = writer.WriteLine s
    let inline puts (s: ^a) = string s |> println

module Prime =

    let inline isPrime (n: int) =
        let limit =
            n
            |> float
            |> sqrt
            |> int
        seq {
            for p in 2 .. limit do
                if n % p = 0 then yield ()
        }
        |> Seq.isEmpty

    /// nを素因数分解した結果を返す
    let primeFactors (n: int64): Map<int64, int64> =
        let limit =
            n
            |> float
            |> sqrt
            |> int64
        let rec count x p acc =
            if x % p = 0L then count (x / p) p (acc + 1L) else acc

        let mutable n = n

        let res =
            seq {
                for p in 2L .. limit + 1L do
                    let c = count n p 0L
                    if c <> 0L then
                        let div = (float p) ** (float c) |> int64
                        n <- n / div
                        yield (p, c)
            }
            |> Map.ofSeq
        if n = 1L then res else res.Add(n, 1L)

    /// nの約数の個数
    let divisorsCount (n: int64): int64 = primeFactors n |> Map.fold (fun acc k v -> acc * (v + 1L)) 1L

    /// upper以下の素数を列挙
    let sieveToUpper upper =
        seq {
            yield 2
            let knownComposites = System.Collections.Generic.SortedSet<int>()
            for i in 3 .. 2 .. upper do
                let found = knownComposites.Contains(i)
                if not found then yield i
                for j in i .. i .. upper do
                    knownComposites.Add(j) |> ignore
        }



    /// nの約数を列挙(n自身を含む)
    /// O(log n)
    let divisors (n: int64): int64 array =
        let lim =
            n
            |> float
            |> sqrt
            |> int64
        seq {
            for i in 1L .. lim do
                if n % i = 0L then
                    yield i
                    if i * i <> n then yield n / i
        }
        |> Array.ofSeq
        |> Array.sort

let eraSieve upper =
    let upper = int upper + 1
    let res = Array.init upper (fun _ -> true)
    res.[0] <- false
    res.[1] <- false
    let rec loop a b =
        let c = a * b
        if c >= upper then
            ()
        else
            res.[c] <- false
            loop a (b + 1)
    for i in 2 .. upper - 1 do
        if res.[i] then loop i 2
    res

let main() =
    let n = read int
    let sieve = eraSieve 10000
    let res = Array.zeroCreate 10001
    for i in 0 .. 3 do
        res.[i] <- false
    for i in 4 .. 10 do
        res.[i] <- true
    for i in 11 .. 10000 do
        let mutable ok = false
        for j in 2 .. i do
            if sieve.[j] then
                if i - j >= 2 && res.[i - j] |> not then ok <- true
        res.[i] <- ok

    if res.[n] then "Win" else "Lose"
    |> puts
    ()

main()
writer.Close()
writer.Close()
0