結果

問題 No.418 ミンミンゼミ
ユーザー tsunabittsunabit
提出日時 2018-06-27 10:36:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 500 bytes
コンパイル時間 3,168 ms
コンパイル使用メモリ 75,552 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-07-16 02:37:10
合計ジャッジ時間 7,068 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,092 KB
testcase_01 AC 117 ms
54,048 KB
testcase_02 AC 127 ms
53,964 KB
testcase_03 AC 104 ms
52,852 KB
testcase_04 AC 118 ms
54,148 KB
testcase_05 AC 123 ms
54,184 KB
testcase_06 AC 105 ms
53,064 KB
testcase_07 AC 114 ms
53,836 KB
testcase_08 AC 115 ms
53,916 KB
testcase_09 AC 120 ms
54,124 KB
testcase_10 AC 121 ms
54,144 KB
testcase_11 AC 121 ms
53,792 KB
testcase_12 AC 119 ms
54,288 KB
testcase_13 AC 120 ms
53,832 KB
testcase_14 AC 116 ms
53,872 KB
testcase_15 AC 118 ms
53,836 KB
testcase_16 AC 117 ms
53,860 KB
testcase_17 AC 122 ms
53,956 KB
testcase_18 AC 119 ms
53,900 KB
testcase_19 AC 115 ms
54,068 KB
testcase_20 AC 116 ms
53,676 KB
testcase_21 AC 114 ms
53,920 KB
testcase_22 AC 115 ms
53,824 KB
testcase_23 AC 115 ms
53,812 KB
testcase_24 AC 118 ms
53,988 KB
testcase_25 AC 117 ms
53,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;

public class No418 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		String s = sc.next().replace("-", "");
		int count = 0;
		for(int i = 0; i < s.length(); i = i + 3) {
			if(s.charAt(i) == 'm' && s.charAt(i + 1) == 'i' && s.charAt(i + 2) == 'n') {
					if(i + 3 == s.length()) {
							count++;
					}else if(s.charAt(i + 3) != 'n') {
							count++;
					}
			}
		}
		System.out.println(count);
	}
}
0