結果

問題 No.300 平方数
ユーザー vain0vain0
提出日時 2015-11-14 01:05:03
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 601 bytes
コンパイル時間 15,527 ms
コンパイル使用メモリ 205,004 KB
実行使用メモリ 60,352 KB
最終ジャッジ日時 2024-09-13 16:34:00
合計ジャッジ時間 33,933 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
34,788 KB
testcase_01 AC 338 ms
34,624 KB
testcase_02 AC 368 ms
56,292 KB
testcase_03 AC 336 ms
34,600 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 338 ms
34,672 KB
testcase_08 AC 338 ms
34,476 KB
testcase_09 AC 340 ms
34,100 KB
testcase_10 AC 337 ms
34,664 KB
testcase_11 AC 339 ms
34,040 KB
testcase_12 AC 339 ms
35,272 KB
testcase_13 WA -
testcase_14 AC 348 ms
37,736 KB
testcase_15 AC 366 ms
51,052 KB
testcase_16 AC 363 ms
49,004 KB
testcase_17 AC 380 ms
57,428 KB
testcase_18 AC 346 ms
37,616 KB
testcase_19 AC 357 ms
46,692 KB
testcase_20 WA -
testcase_21 AC 382 ms
57,552 KB
testcase_22 AC 378 ms
57,664 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 368 ms
56,172 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 368 ms
53,220 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (372 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 = 0L
      while n % p = 0L do
          k <- k + 1L
          n <- n / p
      (n, k)

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

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

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

  //exit code
  0
0