結果
問題 | No.3019 ディープ・ソート |
ユーザー | kuuso1 |
提出日時 | 2017-03-31 22:23:33 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 315 ms / 1,000 ms |
コード長 | 227 bytes |
コンパイル時間 | 15,946 ms |
コンパイル使用メモリ | 193,456 KB |
実行使用メモリ | 33,988 KB |
最終ジャッジ日時 | 2024-07-07 04:51:06 |
合計ジャッジ時間 | 17,119 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (437 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/
ソースコード
open System let ri () = stdin.ReadLine() |> int let ria () = stdin.ReadLine().Split() |> Array.map int type Sol() = member this.Solve() = 42 |> printfn "%d" let mySol = new Sol() mySol.Solve()