結果
問題 | No.632 穴埋め門松列 |
ユーザー | chike_plus |
提出日時 | 2019-03-29 10:08:44 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 46 ms / 1,000 ms |
コード長 | 265 bytes |
コンパイル時間 | 13,861 ms |
コンパイル使用メモリ | 205,492 KB |
実行使用メモリ | 28,544 KB |
最終ジャッジ日時 | 2024-04-24 14:44:24 |
合計ジャッジ時間 | 8,917 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
28,276 KB |
testcase_01 | AC | 42 ms
28,544 KB |
testcase_02 | AC | 42 ms
28,416 KB |
testcase_03 | AC | 44 ms
28,288 KB |
testcase_04 | AC | 45 ms
28,288 KB |
testcase_05 | AC | 46 ms
28,416 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (630 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 穴埋め門松列``()