結果

問題 No.418 ミンミンゼミ
ユーザー cande398cande398
提出日時 2017-10-08 15:52:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 384 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 74,836 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-07-16 02:27:57
合計ジャッジ時間 5,727 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,092 KB
testcase_01 AC 120 ms
53,996 KB
testcase_02 AC 116 ms
53,852 KB
testcase_03 AC 121 ms
53,968 KB
testcase_04 AC 119 ms
54,320 KB
testcase_05 AC 117 ms
54,184 KB
testcase_06 AC 119 ms
53,924 KB
testcase_07 AC 116 ms
54,016 KB
testcase_08 AC 115 ms
53,964 KB
testcase_09 AC 102 ms
52,860 KB
testcase_10 AC 103 ms
52,744 KB
testcase_11 AC 113 ms
53,980 KB
testcase_12 AC 102 ms
53,048 KB
testcase_13 AC 116 ms
53,916 KB
testcase_14 AC 115 ms
54,132 KB
testcase_15 AC 115 ms
54,188 KB
testcase_16 AC 118 ms
54,180 KB
testcase_17 AC 118 ms
54,132 KB
testcase_18 AC 117 ms
54,152 KB
testcase_19 AC 117 ms
53,892 KB
testcase_20 AC 118 ms
54,200 KB
testcase_21 AC 114 ms
53,976 KB
testcase_22 AC 118 ms
54,224 KB
testcase_23 AC 116 ms
54,284 KB
testcase_24 AC 118 ms
53,796 KB
testcase_25 AC 113 ms
54,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  public static void main(String[] args){
    int i, count = 0;
    Scanner sc = new Scanner(System.in);
    String input = sc.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