結果

問題 No.418 ミンミンゼミ
ユーザー cande398cande398
提出日時 2017-10-08 17:46:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 352 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 54,636 KB
最終ジャッジ日時 2024-07-16 02:28:36
合計ジャッジ時間 5,863 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,012 KB
testcase_01 AC 122 ms
54,020 KB
testcase_02 AC 118 ms
54,060 KB
testcase_03 AC 104 ms
53,024 KB
testcase_04 AC 116 ms
54,128 KB
testcase_05 AC 121 ms
53,944 KB
testcase_06 AC 117 ms
54,488 KB
testcase_07 AC 106 ms
52,768 KB
testcase_08 AC 118 ms
54,272 KB
testcase_09 AC 104 ms
53,316 KB
testcase_10 AC 119 ms
54,216 KB
testcase_11 AC 116 ms
54,136 KB
testcase_12 AC 118 ms
54,636 KB
testcase_13 AC 111 ms
53,532 KB
testcase_14 AC 109 ms
53,360 KB
testcase_15 AC 120 ms
54,300 KB
testcase_16 AC 126 ms
53,968 KB
testcase_17 AC 120 ms
54,060 KB
testcase_18 AC 116 ms
54,192 KB
testcase_19 AC 113 ms
54,136 KB
testcase_20 AC 116 ms
54,036 KB
testcase_21 AC 120 ms
54,228 KB
testcase_22 AC 118 ms
54,184 KB
testcase_23 AC 105 ms
53,144 KB
testcase_24 AC 116 ms
54,088 KB
testcase_25 AC 121 ms
54,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class Main{
  public static void main(String[] args){
    int i, count = 0;
    String input = new java.util.Scanner(System.in).next();
    if(input.charAt(input.length()-1) != 'n')count--;
    String[] line = input.split("n");
    for(i=0;i<line.length;i++){
      if(line[i].matches("mi-*"))count++;
    }
    System.out.println(count);
  }
}
0