結果

問題 No.300 平方数
ユーザー vain0vain0
提出日時 2015-11-14 01:08:54
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 663 bytes
コンパイル時間 6,778 ms
コンパイル使用メモリ 206,148 KB
実行使用メモリ 60,376 KB
最終ジャッジ日時 2024-09-13 16:34:27
合計ジャッジ時間 25,008 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
34,524 KB
testcase_01 AC 340 ms
34,800 KB
testcase_02 AC 371 ms
56,432 KB
testcase_03 AC 340 ms
33,748 KB
testcase_04 AC 340 ms
34,540 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 339 ms
34,052 KB
testcase_08 AC 339 ms
34,540 KB
testcase_09 AC 338 ms
34,536 KB
testcase_10 AC 342 ms
34,012 KB
testcase_11 AC 339 ms
33,880 KB
testcase_12 AC 341 ms
35,560 KB
testcase_13 WA -
testcase_14 AC 346 ms
38,124 KB
testcase_15 AC 363 ms
50,124 KB
testcase_16 AC 363 ms
48,508 KB
testcase_17 AC 378 ms
58,224 KB
testcase_18 AC 348 ms
37,044 KB
testcase_19 AC 359 ms
46,696 KB
testcase_20 WA -
testcase_21 AC 382 ms
58,344 KB
testcase_22 AC 379 ms
58,480 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 377 ms
58,180 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 378 ms
57,468 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 356 ms
44,888 KB
testcase_34 AC 378 ms
58,604 KB
testcase_35 AC 367 ms
52,408 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 369 ms
56,172 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 366 ms
53,104 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (232 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) <= n do
        let (m', k) = split (! p) (! m)
        if k > 0 then yield (! p, k)
        p := (! p) + 1L
        m := m'
    // In case n is prime
    if (! m) = n then yield (n, 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 "%d" (solve x)

  //exit code
  0
0