結果

問題 No.418 ミンミンゼミ
ユーザー jimanojimano
提出日時 2018-01-13 22:21:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 580 bytes
コンパイル時間 3,030 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 37,604 KB
最終ジャッジ日時 2024-07-16 02:31:07
合計ジャッジ時間 5,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,408 KB
testcase_01 AC 54 ms
37,428 KB
testcase_02 AC 50 ms
37,488 KB
testcase_03 AC 51 ms
37,396 KB
testcase_04 AC 52 ms
37,472 KB
testcase_05 AC 53 ms
37,364 KB
testcase_06 AC 52 ms
36,996 KB
testcase_07 AC 52 ms
37,476 KB
testcase_08 AC 53 ms
37,048 KB
testcase_09 AC 52 ms
37,200 KB
testcase_10 AC 53 ms
37,036 KB
testcase_11 AC 52 ms
37,460 KB
testcase_12 AC 51 ms
37,488 KB
testcase_13 AC 53 ms
37,604 KB
testcase_14 AC 55 ms
37,240 KB
testcase_15 AC 55 ms
37,212 KB
testcase_16 AC 54 ms
37,336 KB
testcase_17 AC 53 ms
37,164 KB
testcase_18 AC 50 ms
36,908 KB
testcase_19 AC 53 ms
37,272 KB
testcase_20 AC 52 ms
37,020 KB
testcase_21 AC 53 ms
37,308 KB
testcase_22 AC 53 ms
37,436 KB
testcase_23 AC 54 ms
37,468 KB
testcase_24 AC 52 ms
37,156 KB
testcase_25 AC 52 ms
37,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
 * ミンミンゼミ
 */
public class No0418 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			Pattern p = Pattern.compile("(mi\\-*n)");
			Matcher m = p.matcher(br.readLine());
			String str = m.replaceAll("m");
			System.out.println(str.length());
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0