結果

問題 No.418 ミンミンゼミ
ユーザー 37zigen37zigen
提出日時 2016-09-10 01:30:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 1,000 ms
コード長 357 bytes
コンパイル時間 3,726 ms
コンパイル使用メモリ 75,132 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-07-16 01:18:47
合計ジャッジ時間 8,769 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
54,440 KB
testcase_01 AC 155 ms
53,984 KB
testcase_02 AC 150 ms
53,920 KB
testcase_03 AC 151 ms
54,456 KB
testcase_04 AC 154 ms
54,016 KB
testcase_05 AC 152 ms
53,780 KB
testcase_06 AC 159 ms
53,736 KB
testcase_07 AC 154 ms
54,496 KB
testcase_08 AC 154 ms
53,984 KB
testcase_09 AC 154 ms
54,520 KB
testcase_10 AC 151 ms
54,020 KB
testcase_11 AC 154 ms
54,040 KB
testcase_12 AC 154 ms
54,048 KB
testcase_13 AC 154 ms
53,628 KB
testcase_14 AC 154 ms
53,928 KB
testcase_15 AC 154 ms
53,936 KB
testcase_16 AC 153 ms
54,128 KB
testcase_17 AC 150 ms
54,152 KB
testcase_18 AC 153 ms
54,400 KB
testcase_19 AC 156 ms
54,132 KB
testcase_20 AC 151 ms
54,416 KB
testcase_21 AC 151 ms
54,264 KB
testcase_22 AC 151 ms
53,864 KB
testcase_23 AC 150 ms
54,136 KB
testcase_24 AC 157 ms
53,968 KB
testcase_25 AC 155 ms
54,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package No400番台;

import java.util.Scanner;

public class Q418 {
	public static void main(String[] args) {
		new Q418().solver();
	}

	void solver() {
		Scanner sc = new Scanner(System.in);
		char[] c = sc.next().toCharArray();
		int ans = 0;
		for (int i = 0; i < c.length; i++) {
			if (c[i] - 'm' == 0)
				ans++;
		}
		System.out.println(ans);
	}
}
0