結果
問題 | No.418 ミンミンゼミ |
ユーザー |
![]() |
提出日時 | 2016-09-10 09:34:06 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 64 ms / 1,000 ms |
コード長 | 776 bytes |
コンパイル時間 | 1,083 ms |
コンパイル使用メモリ | 110,772 KB |
実行使用メモリ | 30,528 KB |
最終ジャッジ日時 | 2024-07-16 01:19:51 |
合計ジャッジ時間 | 3,312 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 25 |
コンパイルメッセージ
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.Text.RegularExpressions;//YukiCoder418 ミンミンゼミ//http://yukicoder.me/problems/no/418class Program{static string InputPattern = "InputX";static List<string> GetInputList(){var WillReturn = new List<string>();if (InputPattern == "Input1") {WillReturn.Add("mi--nminminminmi-------n");//5}else {string wkStr;while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);}return WillReturn;}static void Main(){List<string> InputList = GetInputList();string S = InputList[0];Console.WriteLine(Regex.Matches(S, "mi-*n").Count);}}