結果

問題 No.300 平方数
ユーザー vain0vain0
提出日時 2015-11-14 01:19:00
言語 F#
(F# 4.0)
結果
AC  
実行時間 381 ms / 1,000 ms
コード長 676 bytes
コンパイル時間 6,770 ms
コンパイル使用メモリ 197,704 KB
実行使用メモリ 58,464 KB
最終ジャッジ日時 2024-09-13 16:35:36
合計ジャッジ時間 24,400 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 340 ms
33,724 KB
testcase_01 AC 339 ms
34,624 KB
testcase_02 AC 339 ms
34,784 KB
testcase_03 AC 341 ms
34,676 KB
testcase_04 AC 340 ms
34,624 KB
testcase_05 AC 339 ms
34,664 KB
testcase_06 AC 340 ms
35,060 KB
testcase_07 AC 338 ms
34,672 KB
testcase_08 AC 341 ms
34,660 KB
testcase_09 AC 341 ms
34,920 KB
testcase_10 AC 340 ms
34,764 KB
testcase_11 AC 339 ms
34,800 KB
testcase_12 AC 339 ms
34,600 KB
testcase_13 AC 381 ms
58,352 KB
testcase_14 AC 339 ms
33,924 KB
testcase_15 AC 338 ms
34,748 KB
testcase_16 AC 338 ms
33,928 KB
testcase_17 AC 338 ms
34,672 KB
testcase_18 AC 338 ms
34,540 KB
testcase_19 AC 339 ms
33,928 KB
testcase_20 AC 341 ms
35,944 KB
testcase_21 AC 339 ms
34,540 KB
testcase_22 AC 339 ms
34,540 KB
testcase_23 AC 345 ms
37,984 KB
testcase_24 AC 348 ms
40,052 KB
testcase_25 AC 381 ms
58,408 KB
testcase_26 AC 352 ms
43,244 KB
testcase_27 AC 348 ms
40,172 KB
testcase_28 AC 374 ms
58,464 KB
testcase_29 AC 369 ms
55,148 KB
testcase_30 AC 346 ms
36,584 KB
testcase_31 AC 344 ms
37,068 KB
testcase_32 AC 345 ms
36,712 KB
testcase_33 AC 355 ms
45,284 KB
testcase_34 AC 377 ms
57,724 KB
testcase_35 AC 368 ms
53,484 KB
testcase_36 AC 352 ms
41,704 KB
testcase_37 AC 351 ms
42,348 KB
testcase_38 AC 340 ms
34,892 KB
testcase_39 AC 339 ms
35,048 KB
testcase_40 AC 340 ms
35,176 KB
testcase_41 AC 349 ms
40,560 KB
testcase_42 AC 339 ms
34,792 KB
testcase_43 AC 342 ms
35,608 KB
testcase_44 AC 341 ms
34,872 KB
testcase_45 AC 341 ms
34,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (229 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

let factorize n =
  let split p n =
      let mutable n = n
      let mutable k = 0
      while n % p = 0L do
          k <- k + 1
          n <- n / p
      (n, k)

  [ let m = ref n
    let p = ref 2L
    while (! p) * (! p) <= (! m) do
        let (m', k) = split (! p) (! m)
        if k > 0 then yield (! p, k)
        p := (! p) + 1L
        m := m'
    if (! m) <> 0L then yield (! m, 1)
    ]

let solve n =
  factorize n
  |> List.choose (fun (k, v) -> if v % 2 <> 0 then Some k else None)
  |> List.fold (*) 1L

[<EntryPoint>]
let main _ =
  let x = Console.ReadLine() |> int64
  //printfn "%A" (factorize x)
  printfn "%d" (solve x)

  //exit code
  0
0