結果
問題 | No.175 simpleDNA |
ユーザー | regerege |
提出日時 | 2016-10-02 05:16:01 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 341 ms / 1,000 ms |
コード長 | 196 bytes |
コンパイル時間 | 7,607 ms |
コンパイル使用メモリ | 188,444 KB |
実行使用メモリ | 34,912 KB |
最終ジャッジ日時 | 2024-11-21 12:54:29 |
合計ジャッジ時間 | 10,779 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 339 ms
34,912 KB |
testcase_01 | AC | 331 ms
33,668 KB |
testcase_02 | AC | 339 ms
34,656 KB |
testcase_03 | AC | 341 ms
34,892 KB |
testcase_04 | AC | 337 ms
33,828 KB |
testcase_05 | AC | 337 ms
34,568 KB |
testcase_06 | AC | 338 ms
34,756 KB |
testcase_07 | AC | 335 ms
34,660 KB |
testcase_08 | AC | 338 ms
34,624 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (251 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/
ソースコード
let L = stdin.ReadLine() |> int let N = stdin.ReadLine() |> int let _ = stdin.ReadLine() let l = L/3-1 let f n = [1..n] |> List.fold (fun s _ -> s*8) 1 if l = 0 then N else f l * N |> printfn "%d"