結果

問題 No.418 ミンミンゼミ
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-01-18 23:28:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 546 bytes
コンパイル時間 1,886 ms
コンパイル使用メモリ 75,092 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-07-16 02:16:56
合計ジャッジ時間 5,854 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,216 KB
testcase_01 AC 116 ms
54,052 KB
testcase_02 AC 117 ms
53,836 KB
testcase_03 AC 121 ms
53,740 KB
testcase_04 AC 118 ms
53,740 KB
testcase_05 AC 120 ms
54,208 KB
testcase_06 AC 120 ms
53,804 KB
testcase_07 AC 122 ms
53,912 KB
testcase_08 AC 122 ms
53,696 KB
testcase_09 AC 118 ms
53,916 KB
testcase_10 AC 123 ms
53,908 KB
testcase_11 AC 118 ms
53,808 KB
testcase_12 AC 120 ms
53,960 KB
testcase_13 AC 123 ms
53,784 KB
testcase_14 AC 122 ms
53,744 KB
testcase_15 AC 120 ms
53,920 KB
testcase_16 AC 116 ms
54,036 KB
testcase_17 AC 113 ms
53,456 KB
testcase_18 AC 117 ms
53,696 KB
testcase_19 AC 119 ms
53,820 KB
testcase_20 AC 120 ms
53,700 KB
testcase_21 AC 132 ms
54,068 KB
testcase_22 AC 118 ms
53,972 KB
testcase_23 AC 116 ms
53,812 KB
testcase_24 AC 118 ms
54,084 KB
testcase_25 AC 116 ms
53,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

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

        int min_count = 0;

        s = s.replaceAll("-", "");
        s = s.replaceAll("min", "a");

        for(int i=0; i<s.length(); i++) {
            if(s.charAt(i) == 'a') {
                min_count++;
            }
        }

        System.out.println(min_count);

        in.close();
    }
}
0