結果

問題 No.632 穴埋め門松列
ユーザー taktak
提出日時 2018-07-29 23:31:12
言語 F#
(F# 4.0)
結果
AC  
実行時間 63 ms / 1,000 ms
コード長 204 bytes
コンパイル時間 9,049 ms
コンパイル使用メモリ 187,860 KB
実行使用メモリ 30,464 KB
最終ジャッジ日時 2024-07-19 03:53:24
合計ジャッジ時間 9,292 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
30,464 KB
testcase_01 AC 63 ms
30,464 KB
testcase_02 AC 61 ms
30,464 KB
testcase_03 AC 58 ms
30,292 KB
testcase_04 AC 61 ms
30,464 KB
testcase_05 AC 59 ms
30,464 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (215 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/

ソースコード

diff #

let (|Num|Unknown|) = function | "?" -> Unknown | x -> Num (int x)

let c = stdin.ReadLine().Split()

match c.[1] with
| Unknown    -> "14"
| Num center -> if center = 3 then "1" else "4"
|> printfn "%s"
0