結果

問題 No.418 ミンミンゼミ
ユーザー YamaKasaYamaKasa
提出日時 2018-05-05 17:11:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 532 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 74,188 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-07-16 02:35:11
合計ジャッジ時間 5,769 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,332 KB
testcase_01 AC 103 ms
40,088 KB
testcase_02 AC 100 ms
39,988 KB
testcase_03 AC 113 ms
41,444 KB
testcase_04 AC 115 ms
41,580 KB
testcase_05 AC 118 ms
41,300 KB
testcase_06 AC 117 ms
41,272 KB
testcase_07 AC 116 ms
41,392 KB
testcase_08 AC 113 ms
41,272 KB
testcase_09 AC 114 ms
41,368 KB
testcase_10 AC 113 ms
41,300 KB
testcase_11 AC 112 ms
41,008 KB
testcase_12 AC 110 ms
41,164 KB
testcase_13 AC 115 ms
41,272 KB
testcase_14 AC 118 ms
41,372 KB
testcase_15 AC 116 ms
41,580 KB
testcase_16 AC 102 ms
40,204 KB
testcase_17 AC 118 ms
41,368 KB
testcase_18 AC 113 ms
41,068 KB
testcase_19 AC 118 ms
41,128 KB
testcase_20 AC 118 ms
41,320 KB
testcase_21 AC 106 ms
40,172 KB
testcase_22 AC 123 ms
41,252 KB
testcase_23 AC 119 ms
41,288 KB
testcase_24 AC 105 ms
39,864 KB
testcase_25 AC 115 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S = scan.next();
		scan.close();
		int cnt = 0;
		int ans = 0;
		for(int i = 0; i < S.length(); i++) {
			char c = S.charAt(i);
			if(cnt == 0 && c == 'm') {
				cnt ++;
			}else if(cnt == 1 && c == 'i') {
				cnt ++;
			}else if(cnt == 2 && c == 'n') {
				cnt ++;
				ans ++;
			}else if(cnt == 3) {
				cnt = 0;
				if(c == 'm') {
					cnt ++;
				}
			}
		}
		System.out.println(ans);
	}
}
0