結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー ikdikd
提出日時 2020-06-06 19:47:17
言語 F#
(F# 4.0)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 820 bytes
コンパイル時間 6,269 ms
コンパイル使用メモリ 195,464 KB
実行使用メモリ 36,168 KB
最終ジャッジ日時 2024-06-06 02:47:09
合計ジャッジ時間 13,058 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
34,940 KB
testcase_01 AC 327 ms
35,064 KB
testcase_02 AC 323 ms
35,312 KB
testcase_03 AC 329 ms
35,496 KB
testcase_04 AC 328 ms
35,292 KB
testcase_05 AC 327 ms
35,260 KB
testcase_06 AC 366 ms
35,120 KB
testcase_07 AC 328 ms
36,036 KB
testcase_08 AC 328 ms
35,776 KB
testcase_09 AC 327 ms
36,168 KB
testcase_10 AC 336 ms
35,824 KB
testcase_11 AC 331 ms
35,232 KB
testcase_12 AC 339 ms
36,160 KB
testcase_13 AC 333 ms
36,020 KB
testcase_14 AC 327 ms
36,032 KB
testcase_15 AC 343 ms
35,740 KB
testcase_16 AC 333 ms
35,468 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (224 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 sqrt n =
    let rec solve sm bg = // sm * sm <= n < bg * bg
        if bg - sm <= 1L then
            sm
        else
            let mid = (bg + sm) / 2L
            if mid * mid <= n then solve mid bg else solve sm mid
    solve 0L (n + 1L)

let factors n =
    seq {
        for i in 1L .. sqrt n -> i
    }
    |> Seq.filter (fun i -> n % i = 0L)
    |> Seq.collect (fun i ->
        seq {
            yield i
            yield n / i
        })
    |> Seq.sort
    |> Seq.distinct

[<EntryPoint>]
let main _ =
    let n = stdin.ReadLine() |> int64

    let bs =
        factors n
        |> Seq.filter (fun b ->
            let m = (n / b)
            (sqrt m) * (sqrt m) = m)

    let b =
        bs
        |> Seq.sort
        |> Seq.head

    let a = sqrt (n / b)

    printfn "%d %d" a b
    0
0