結果
問題 | No.380 悪の台本 |
ユーザー | kuuso1 |
提出日時 | 2016-09-03 01:26:21 |
言語 | F# (F# 4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,177 bytes |
コンパイル時間 | 12,037 ms |
コンパイル使用メモリ | 196,120 KB |
実行使用メモリ | 36,608 KB |
最終ジャッジ日時 | 2024-11-06 23:14:01 |
合計ジャッジ時間 | 11,504 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 78 ms
32,768 KB |
testcase_03 | AC | 78 ms
32,512 KB |
testcase_04 | AC | 90 ms
34,048 KB |
testcase_05 | AC | 126 ms
36,608 KB |
testcase_06 | AC | 121 ms
36,352 KB |
testcase_07 | WA | - |
testcase_08 | AC | 83 ms
35,072 KB |
testcase_09 | AC | 95 ms
34,944 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (253 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 open System.Text.RegularExpressions let ri () = stdin.ReadLine() |> int let ria () = stdin.ReadLine().Split() |> Array.map int type Sol() = member this.Solve() = let okMsg = "CORRECT (maybe)" let ngMsg = "WRONG!" let judgeWords (s :string) = let ss = s.Split() match (ss.[0] ,s) with | ("digi",_ ) when Regex.Match(s,"[nN][yY][oO][^a-zA-Z0-9]{0,3}$").Success -> okMsg | ("petit",_ ) when Regex.Match(s,"[nN][yY][uU][^a-zA-Z0-9]{0,3}$").Success -> okMsg | ("rabi",_ ) when Regex.Match(s,"[^a-zA-Z0-9]").Success -> okMsg | ("gema",_ ) when Regex.Match(s,"[gG][eE][mM][aA][^a-zA-Z0-9]{0,3}$").Success -> okMsg | ("piyo",_ ) when Regex.Match(s,"[pP][yY][oO][^a-zA-Z0-9]{0,3}$").Success -> okMsg | (_,_ ) -> ngMsg let mutable chk = true let mutable input :string = "" while chk do input <- stdin.ReadLine() chk <- String.IsNullOrEmpty(input) |> not if chk then input |> judgeWords |> printfn "%s" let mySol = new Sol() mySol.Solve()