結果

問題 No.418 ミンミンゼミ
ユーザー YOSHIYOSHI
提出日時 2021-03-16 22:06:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 419 bytes
コンパイル時間 3,431 ms
コンパイル使用メモリ 72,724 KB
実行使用メモリ 37,160 KB
最終ジャッジ日時 2024-11-08 16:59:17
合計ジャッジ時間 5,905 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,040 KB
testcase_01 AC 53 ms
36,856 KB
testcase_02 AC 52 ms
36,916 KB
testcase_03 AC 53 ms
37,064 KB
testcase_04 AC 52 ms
36,908 KB
testcase_05 AC 53 ms
36,652 KB
testcase_06 AC 53 ms
36,884 KB
testcase_07 AC 53 ms
36,560 KB
testcase_08 AC 53 ms
36,472 KB
testcase_09 AC 53 ms
37,160 KB
testcase_10 AC 52 ms
36,992 KB
testcase_11 AC 54 ms
36,692 KB
testcase_12 AC 53 ms
36,820 KB
testcase_13 AC 53 ms
36,584 KB
testcase_14 AC 53 ms
36,668 KB
testcase_15 AC 54 ms
36,540 KB
testcase_16 AC 52 ms
36,864 KB
testcase_17 AC 53 ms
36,732 KB
testcase_18 AC 53 ms
37,052 KB
testcase_19 AC 53 ms
36,588 KB
testcase_20 AC 52 ms
37,020 KB
testcase_21 AC 52 ms
36,840 KB
testcase_22 AC 52 ms
36,896 KB
testcase_23 AC 52 ms
36,876 KB
testcase_24 AC 52 ms
36,668 KB
testcase_25 AC 53 ms
36,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000418_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		String s = br.readLine();
		int cnt = 0;
		for(int i = 0; i < s.length(); i++) {
			if(s.charAt(i) == 'm') cnt++;
		}
		System.out.println(cnt);
	}
}
0