結果

問題 No.2 素因数ゲーム
ユーザー keidenkeiden
提出日時 2024-09-19 09:49:15
言語 F#
(F# 4.0)
結果
AC  
実行時間 197 ms / 5,000 ms
コード長 800 bytes
コンパイル時間 14,189 ms
コンパイル使用メモリ 185,460 KB
実行使用メモリ 31,488 KB
最終ジャッジ日時 2024-09-19 09:49:33
合計ジャッジ時間 10,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
30,848 KB
testcase_01 AC 65 ms
30,824 KB
testcase_02 AC 65 ms
30,848 KB
testcase_03 AC 66 ms
30,976 KB
testcase_04 AC 68 ms
30,688 KB
testcase_05 AC 65 ms
30,848 KB
testcase_06 AC 64 ms
30,952 KB
testcase_07 AC 65 ms
30,976 KB
testcase_08 AC 69 ms
31,232 KB
testcase_09 AC 66 ms
30,848 KB
testcase_10 AC 67 ms
31,488 KB
testcase_11 AC 71 ms
31,084 KB
testcase_12 AC 67 ms
30,976 KB
testcase_13 AC 65 ms
30,848 KB
testcase_14 AC 64 ms
31,064 KB
testcase_15 AC 63 ms
30,720 KB
testcase_16 AC 66 ms
31,072 KB
testcase_17 AC 66 ms
31,104 KB
testcase_18 AC 70 ms
30,964 KB
testcase_19 AC 139 ms
30,976 KB
testcase_20 AC 118 ms
31,360 KB
testcase_21 AC 197 ms
31,360 KB
testcase_22 AC 68 ms
31,072 KB
testcase_23 AC 71 ms
31,104 KB
testcase_24 AC 65 ms
31,232 KB
testcase_25 AC 71 ms
31,232 KB
testcase_26 AC 65 ms
30,848 KB
testcase_27 AC 67 ms
30,592 KB
testcase_28 AC 65 ms
30,848 KB
testcase_29 AC 64 ms
30,720 KB
testcase_30 AC 63 ms
30,720 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (240 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

let primeFactorization n =
    let factors = Dictionary<int, int>()
    let mutable num = n
    while num % 2 = 0 do
        factors.[2] <- factors.TryGetValue(2) |> function (true, v) -> v + 1 | _ -> 1
        num <- num / 2
    let mutable divisor = 3
    while num > 1 do
        while num % divisor = 0 do
            factors.[divisor] <- factors.TryGetValue(divisor) |> function (true, v) -> v + 1 | _ -> 1
            num <- num / divisor
        divisor <- divisor + 2
    factors

[<EntryPoint>]
let yuki2 args : int =
    let n = Console.ReadLine() |> int
    let factorsMap = primeFactorization n
    let mutable ret = 0
    for KeyValue(_, v) in factorsMap do
        ret <- ret ^^^ v
    printfn "%s" (if ret = 0 then "Bob" else "Alice")
    0
0