結果
問題 | No.632 穴埋め門松列 |
ユーザー | chike_plus |
提出日時 | 2019-03-29 10:08:44 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 53 ms / 1,000 ms |
コード長 | 265 bytes |
コンパイル時間 | 13,351 ms |
コンパイル使用メモリ | 204,128 KB |
実行使用メモリ | 28,544 KB |
最終ジャッジ日時 | 2024-11-06 23:09:37 |
合計ジャッジ時間 | 14,341 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
28,416 KB |
testcase_01 | AC | 52 ms
28,544 KB |
testcase_02 | AC | 52 ms
28,160 KB |
testcase_03 | AC | 52 ms
28,288 KB |
testcase_04 | AC | 52 ms
28,416 KB |
testcase_05 | AC | 52 ms
28,416 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (288 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) /home/judge/data/code/Main.fs(7,9): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '"a"' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj] main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
let ``No.632 穴埋め門松列``() = let c1, c2 , c3 = stdin.ReadLine().Split(' ') |> fun args -> args.[0], args.[1], args.[2] match c2 with | "?" -> "14" | "2" -> "4" | "3" -> "1" |> stdout.WriteLine () ``No.632 穴埋め門松列``()