結果

問題 No.418 ミンミンゼミ
ユーザー imcgsknimcgskn
提出日時 2017-12-12 17:22:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 405 bytes
コンパイル時間 1,828 ms
コンパイル使用メモリ 73,900 KB
実行使用メモリ 41,496 KB
最終ジャッジ日時 2024-07-16 02:30:21
合計ジャッジ時間 5,674 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
39,860 KB
testcase_01 AC 99 ms
40,204 KB
testcase_02 AC 103 ms
40,260 KB
testcase_03 AC 104 ms
40,164 KB
testcase_04 AC 121 ms
41,264 KB
testcase_05 AC 108 ms
40,156 KB
testcase_06 AC 125 ms
41,272 KB
testcase_07 AC 119 ms
40,884 KB
testcase_08 AC 120 ms
41,220 KB
testcase_09 AC 111 ms
39,988 KB
testcase_10 AC 107 ms
40,156 KB
testcase_11 AC 121 ms
41,356 KB
testcase_12 AC 122 ms
41,188 KB
testcase_13 AC 104 ms
40,292 KB
testcase_14 AC 117 ms
41,112 KB
testcase_15 AC 118 ms
41,260 KB
testcase_16 AC 119 ms
41,300 KB
testcase_17 AC 120 ms
41,484 KB
testcase_18 AC 121 ms
41,268 KB
testcase_19 AC 123 ms
41,496 KB
testcase_20 AC 123 ms
41,108 KB
testcase_21 AC 114 ms
41,308 KB
testcase_22 AC 108 ms
39,956 KB
testcase_23 AC 125 ms
41,492 KB
testcase_24 AC 119 ms
41,236 KB
testcase_25 AC 103 ms
39,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Minzemi {
    public static void main(String args[]) {
        Scanner stdIn = new Scanner(System.in);

        String min = stdIn.next(); //文字列
        char pur = 'm';
        int count = 0; //カウント

        for(char x: min.toCharArray()){
            if(x == pur){
                count++;
            }
        }
        System.out.println(count);
    }
}
0