結果
問題 | No.345 最小チワワ問題 |
ユーザー | MoonOnRain |
提出日時 | 2018-07-14 07:16:00 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,060 bytes |
コンパイル時間 | 815 ms |
コンパイル使用メモリ | 110,760 KB |
実行使用メモリ | 30,360 KB |
最終ジャッジ日時 | 2024-10-09 05:58:54 |
合計ジャッジ時間 | 3,676 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 59 ms
22,016 KB |
testcase_01 | AC | 59 ms
22,016 KB |
testcase_02 | AC | 59 ms
22,272 KB |
testcase_03 | AC | 58 ms
22,272 KB |
testcase_04 | AC | 59 ms
22,400 KB |
testcase_05 | AC | 60 ms
22,528 KB |
testcase_06 | AC | 60 ms
22,400 KB |
testcase_07 | AC | 55 ms
22,016 KB |
testcase_08 | AC | 55 ms
21,760 KB |
testcase_09 | AC | 53 ms
22,016 KB |
testcase_10 | AC | 60 ms
22,272 KB |
testcase_11 | AC | 54 ms
21,888 KB |
testcase_12 | AC | 57 ms
22,272 KB |
testcase_13 | AC | 56 ms
22,016 KB |
testcase_14 | AC | 60 ms
22,144 KB |
testcase_15 | AC | 59 ms
22,144 KB |
testcase_16 | AC | 58 ms
22,144 KB |
testcase_17 | AC | 60 ms
22,272 KB |
testcase_18 | WA | - |
testcase_19 | AC | 60 ms
21,888 KB |
testcase_20 | AC | 59 ms
22,144 KB |
testcase_21 | AC | 57 ms
22,400 KB |
testcase_22 | AC | 59 ms
22,144 KB |
testcase_23 | AC | 59 ms
22,400 KB |
testcase_24 | AC | 59 ms
22,272 KB |
testcase_25 | AC | 59 ms
22,400 KB |
testcase_26 | AC | 60 ms
22,272 KB |
testcase_27 | WA | - |
testcase_28 | AC | 58 ms
22,144 KB |
testcase_29 | AC | 60 ms
22,144 KB |
testcase_30 | AC | 59 ms
22,400 KB |
testcase_31 | AC | 54 ms
22,144 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; namespace ConsoleApp1 { class Program { private const string CWW = "c.*?w.*?w"; static void Main(string[] args) { var target = Console.ReadLine(); var r = Regex.Matches(target, CWW); if (r.Count == 0) { Console.WriteLine("-1"); return; } var min = 101; GetMinValue(r, ref min); // 逆方向からの検索 r = Regex.Matches(target, CWW, RegexOptions.RightToLeft); GetMinValue(r, ref min, RegexOptions.RightToLeft); Console.WriteLine(min); Console.ReadKey(); } private static void GetMinValue(MatchCollection target, ref int min, RegexOptions regexOptions = RegexOptions.None) { foreach (Match match in target) { if (min > match.Length) { min = match.MatcheEx(CWW, regexOptions).Value.Length; } } } } public static class MatchEX { public static Match MatcheEx(this Match match, string pat, RegexOptions regexOptions) { var target = match.Value; if(regexOptions == RegexOptions.None) { target = target.Substring(1); } else if(regexOptions == RegexOptions.RightToLeft) { target = target.Substring(0, target.Length - 1); } var search = Regex.Matches(target, pat); if(search.Count == 0) { return match; } else if (search.Count == 1) { return search[0].MatcheEx(pat, regexOptions); } else { throw new Exception("too match"); } } } }