結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー ikdikd
提出日時 2020-06-06 19:46:10
言語 F#
(F# 4.0)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 9,414 ms
コンパイル使用メモリ 195,184 KB
実行使用メモリ 36,708 KB
最終ジャッジ日時 2024-06-06 02:46:50
合計ジャッジ時間 16,225 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
35,908 KB
testcase_01 AC 329 ms
35,784 KB
testcase_02 AC 340 ms
35,524 KB
testcase_03 AC 335 ms
36,524 KB
testcase_04 AC 326 ms
35,620 KB
testcase_05 AC 334 ms
36,676 KB
testcase_06 AC 338 ms
35,084 KB
testcase_07 AC 326 ms
36,708 KB
testcase_08 AC 330 ms
36,296 KB
testcase_09 AC 342 ms
36,300 KB
testcase_10 AC 334 ms
36,292 KB
testcase_11 AC 339 ms
36,116 KB
testcase_12 AC 346 ms
36,436 KB
testcase_13 AC 339 ms
36,292 KB
testcase_14 AC 346 ms
36,244 KB
testcase_15 AC 330 ms
35,568 KB
testcase_16 AC 335 ms
36,564 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (267 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 =
    [ for i in 1L .. sqrt n -> i ]
    |> List.filter (fun i -> n % i = 0L)
    |> List.collect (fun i ->
        [ i
          n / i ])
    |> List.sort
    |> List.distinct

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

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

    let b = bs |> List.min
    let a = sqrt (n / b)

    printfn "%d %d" a b
    0
0