結果
問題 | No.300 平方数 |
ユーザー | vain0 |
提出日時 | 2015-11-14 00:49:48 |
言語 | F# (F# 4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 650 bytes |
コンパイル時間 | 11,954 ms |
コンパイル使用メモリ | 185,212 KB |
実行使用メモリ | 65,284 KB |
最終ジャッジ日時 | 2024-09-13 16:33:12 |
合計ジャッジ時間 | 22,679 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 349 ms
38,560 KB |
testcase_01 | AC | 350 ms
40,048 KB |
testcase_02 | AC | 350 ms
34,208 KB |
testcase_03 | AC | 349 ms
34,800 KB |
testcase_04 | AC | 349 ms
35,036 KB |
testcase_05 | AC | 351 ms
34,196 KB |
testcase_06 | AC | 352 ms
34,920 KB |
testcase_07 | AC | 351 ms
34,920 KB |
testcase_08 | AC | 351 ms
34,788 KB |
testcase_09 | AC | 350 ms
34,856 KB |
testcase_10 | AC | 349 ms
34,068 KB |
testcase_11 | AC | 350 ms
34,928 KB |
testcase_12 | AC | 349 ms
33,976 KB |
testcase_13 | AC | 540 ms
58,224 KB |
testcase_14 | AC | 349 ms
34,772 KB |
testcase_15 | AC | 345 ms
34,772 KB |
testcase_16 | AC | 352 ms
34,664 KB |
testcase_17 | AC | 350 ms
35,300 KB |
testcase_18 | AC | 342 ms
34,780 KB |
testcase_19 | AC | 352 ms
34,928 KB |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (330 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/
ソースコード
open System let factorize n = let split p n = let mutable n = n let mutable k = 0L while n % p = 0L do k <- k + 1L n <- n / p (n, k) let f (p, n) = if p <= n then let (m, k) = split p n let elem = if k > 0L then Some (p, k) else None Some (elem, (p + 1L, m)) else None Seq.unfold f (2L, n) |> Seq.choose id |> Map.ofSeq let solve n = factorize n |> Map.toSeq |> Seq.choose (fun (k, v) -> if v % 2L <> 0L then Some k else None) |> Seq.fold (*) 1L [<EntryPoint>] let main _ = let x = Console.ReadLine() |> int64 printfn "%d" (solve x) //exit code 0