結果

問題 No.418 ミンミンゼミ
ユーザー atkrymatkrym
提出日時 2016-10-18 11:45:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 371 bytes
コンパイル時間 2,194 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-07-16 02:09:21
合計ジャッジ時間 6,240 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,264 KB
testcase_01 AC 121 ms
41,424 KB
testcase_02 AC 119 ms
41,332 KB
testcase_03 AC 112 ms
41,224 KB
testcase_04 AC 116 ms
41,140 KB
testcase_05 AC 125 ms
41,528 KB
testcase_06 AC 114 ms
40,600 KB
testcase_07 AC 123 ms
41,172 KB
testcase_08 AC 123 ms
41,436 KB
testcase_09 AC 123 ms
41,456 KB
testcase_10 AC 109 ms
40,220 KB
testcase_11 AC 118 ms
41,336 KB
testcase_12 AC 110 ms
40,560 KB
testcase_13 AC 119 ms
41,104 KB
testcase_14 AC 102 ms
40,232 KB
testcase_15 AC 121 ms
41,508 KB
testcase_16 AC 119 ms
41,340 KB
testcase_17 AC 114 ms
41,460 KB
testcase_18 AC 120 ms
41,316 KB
testcase_19 AC 112 ms
40,220 KB
testcase_20 AC 121 ms
41,448 KB
testcase_21 AC 121 ms
41,472 KB
testcase_22 AC 111 ms
40,932 KB
testcase_23 AC 119 ms
41,124 KB
testcase_24 AC 122 ms
41,080 KB
testcase_25 AC 119 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.regex.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        String s = sc.next();
        Pattern p = Pattern.compile("mi-*n");
        String ret = p.matcher(s).replaceAll("-");
        
        System.out.println(ret.length());
    }
}
0