結果

問題 No.414 衝動
ユーザー kuuso1kuuso1
提出日時 2016-08-26 22:29:30
言語 F#
(F# 4.0)
結果
AC  
実行時間 416 ms / 1,000 ms
コード長 478 bytes
コンパイル時間 14,541 ms
コンパイル使用メモリ 196,724 KB
実行使用メモリ 67,160 KB
最終ジャッジ日時 2024-11-15 09:02:21
合計ジャッジ時間 20,749 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 397 ms
61,040 KB
testcase_01 AC 341 ms
35,028 KB
testcase_02 AC 341 ms
34,668 KB
testcase_03 AC 415 ms
66,916 KB
testcase_04 AC 404 ms
66,788 KB
testcase_05 AC 414 ms
67,040 KB
testcase_06 AC 415 ms
67,032 KB
testcase_07 AC 343 ms
34,120 KB
testcase_08 AC 372 ms
52,096 KB
testcase_09 AC 416 ms
67,160 KB
testcase_10 AC 342 ms
34,804 KB
testcase_11 AC 344 ms
36,932 KB
testcase_12 AC 343 ms
36,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (339 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 ri () = stdin.ReadLine() |> int
let ria () = stdin.ReadLine().Split() |> Array.map int

type Sol() =
    member this.Solve() = 
        
        let M = stdin.ReadLine() |> int64
        let sqrtM = M |> double |> sqrt |> int
        let res = [2..sqrtM] |> List.tryFind (fun p -> M % (int64 p) = 0L )
        let n = res |> ( function | Some p -> (int64 p) | None -> M ) 
        printfn "%d %d" (M/n) n
        
        ()
let mySol = new Sol()
mySol.Solve()
0