結果

問題 No.418 ミンミンゼミ
ユーザー deliciouscicadadeliciouscicada
提出日時 2016-09-22 09:04:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 578 bytes
コンパイル時間 2,144 ms
コンパイル使用メモリ 74,016 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-07-16 01:25:38
合計ジャッジ時間 6,139 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,308 KB
testcase_01 AC 111 ms
40,356 KB
testcase_02 AC 125 ms
41,328 KB
testcase_03 AC 113 ms
41,124 KB
testcase_04 AC 113 ms
41,136 KB
testcase_05 AC 118 ms
41,412 KB
testcase_06 AC 99 ms
39,576 KB
testcase_07 AC 118 ms
41,196 KB
testcase_08 AC 117 ms
41,104 KB
testcase_09 AC 119 ms
41,256 KB
testcase_10 AC 120 ms
41,516 KB
testcase_11 AC 114 ms
40,896 KB
testcase_12 AC 104 ms
40,028 KB
testcase_13 AC 104 ms
40,272 KB
testcase_14 AC 123 ms
41,300 KB
testcase_15 AC 122 ms
41,292 KB
testcase_16 AC 122 ms
41,356 KB
testcase_17 AC 112 ms
40,596 KB
testcase_18 AC 124 ms
41,452 KB
testcase_19 AC 121 ms
41,272 KB
testcase_20 AC 122 ms
41,472 KB
testcase_21 AC 122 ms
41,088 KB
testcase_22 AC 124 ms
40,940 KB
testcase_23 AC 124 ms
41,428 KB
testcase_24 AC 122 ms
41,248 KB
testcase_25 AC 125 ms
41,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

// public class No428_minminzemi {
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		// 文字列の取得
		String line = sc.next();

		// 鳴き声の正規表現
		Pattern pattern = Pattern.compile("(mi-*?n)");
		Matcher matcher = pattern.matcher(line);

		// 文字列に含まれる鳴き声の数
		int matchCount = 0;

		while(matcher.find()) {
			matchCount++;
		}

		// 結果の表示
		System.out.println(matchCount);
	}
}
0