結果

問題 No.418 ミンミンゼミ
ユーザー darknightdarknight
提出日時 2016-11-27 16:30:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 558 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-07-16 02:14:58
合計ジャッジ時間 6,705 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,536 KB
testcase_01 AC 115 ms
41,156 KB
testcase_02 AC 111 ms
41,212 KB
testcase_03 AC 111 ms
41,320 KB
testcase_04 AC 111 ms
40,908 KB
testcase_05 AC 116 ms
41,416 KB
testcase_06 AC 118 ms
41,404 KB
testcase_07 AC 101 ms
40,048 KB
testcase_08 AC 116 ms
41,140 KB
testcase_09 AC 120 ms
41,300 KB
testcase_10 AC 121 ms
41,012 KB
testcase_11 AC 119 ms
41,316 KB
testcase_12 AC 116 ms
41,420 KB
testcase_13 AC 111 ms
41,104 KB
testcase_14 AC 118 ms
41,268 KB
testcase_15 AC 104 ms
40,140 KB
testcase_16 AC 120 ms
41,000 KB
testcase_17 AC 99 ms
40,048 KB
testcase_18 AC 124 ms
41,300 KB
testcase_19 AC 116 ms
41,324 KB
testcase_20 AC 118 ms
41,256 KB
testcase_21 AC 119 ms
41,124 KB
testcase_22 AC 118 ms
41,424 KB
testcase_23 AC 107 ms
40,328 KB
testcase_24 AC 106 ms
40,080 KB
testcase_25 AC 115 ms
40,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
public class Main {
	public static void main(String[] args) {
 
	Scanner sc  = new Scanner(System.in);
        
    String s1 = sc.next();
    char[] c1 = s1.toCharArray();
    int f=0;
    int ans=0;
    
    for( int i=0; i<s1.length(); i++ ){
        
        if(c1[i]=='m'&&f==0)
        {
            f++;
        }else if(c1[i]=='i'&&f==1){
            f++;
        }else if(c1[i]=='n'&&f==2){
            f=0;
            ans++;
        }
        
    }

        System.out.print(ans);
        System.out.println();
	}
        
}
0