結果
問題 | No.175 simpleDNA |
ユーザー |
|
提出日時 | 2017-09-26 12:47:03 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 339 ms / 1,000 ms |
コード長 | 194 bytes |
コンパイル時間 | 15,749 ms |
コンパイル使用メモリ | 185,520 KB |
実行使用メモリ | 34,736 KB |
最終ジャッジ日時 | 2024-11-15 16:50:23 |
合計ジャッジ時間 | 19,161 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (434 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 f = int >> fun i -> i - 3let count =match (stdin.ReadLine () |> f,stdin.ReadLine () |> int) with| (0, n) -> n| (l, n) -> (2 <<< (l-1)) * ncount |> printfn "%d"