結果

問題 No.677 10^Nの約数
ユーザー kuuso1kuuso1
提出日時 2018-04-27 22:51:48
言語 F#
(F# 4.0)
結果
AC  
実行時間 347 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 8,473 ms
コンパイル使用メモリ 197,076 KB
実行使用メモリ 36,384 KB
最終ジャッジ日時 2024-06-27 22:07:24
合計ジャッジ時間 16,153 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
33,816 KB
testcase_01 AC 344 ms
34,672 KB
testcase_02 AC 342 ms
34,956 KB
testcase_03 AC 343 ms
34,292 KB
testcase_04 AC 344 ms
34,676 KB
testcase_05 AC 345 ms
35,344 KB
testcase_06 AC 346 ms
34,672 KB
testcase_07 AC 346 ms
34,668 KB
testcase_08 AC 343 ms
34,420 KB
testcase_09 AC 345 ms
34,668 KB
testcase_10 AC 347 ms
34,424 KB
testcase_11 AC 340 ms
34,420 KB
testcase_12 AC 336 ms
34,552 KB
testcase_13 AC 341 ms
35,216 KB
testcase_14 AC 336 ms
36,384 KB
testcase_15 AC 336 ms
34,432 KB
testcase_16 AC 337 ms
35,368 KB
testcase_17 AC 344 ms
34,700 KB
testcase_18 AC 328 ms
34,576 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /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 ri () = stdin.ReadLine() |> int
let ria () = stdin.ReadLine().Split() |> Array.map int

type Sol() =
    member this.Solve() = 
        
        let N = ri()
        let rec pow n k = 
          match k with
            | 0 -> 1L
            | _ -> (int64) n * pow n  (k - 1)
        
        let a = [ for i in 0..N do
                    for j in 0..N do
                      yield (pow 2 i) * (pow 5 j) ]
        
        a
        |> List.sort
        |> List.iter (fun n -> printfn "%d" n)
        
        
        ()
let mySol = new Sol()
mySol.Solve()
0