結果

問題 No.418 ミンミンゼミ
ユーザー yamax3232yamax3232
提出日時 2017-02-17 11:28:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 575 bytes
コンパイル時間 3,262 ms
コンパイル使用メモリ 74,856 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-07-16 02:18:35
合計ジャッジ時間 7,121 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,144 KB
testcase_01 AC 124 ms
41,268 KB
testcase_02 AC 134 ms
41,400 KB
testcase_03 AC 118 ms
41,096 KB
testcase_04 AC 107 ms
39,812 KB
testcase_05 AC 117 ms
41,488 KB
testcase_06 AC 113 ms
40,848 KB
testcase_07 AC 119 ms
41,272 KB
testcase_08 AC 103 ms
39,804 KB
testcase_09 AC 97 ms
39,788 KB
testcase_10 AC 115 ms
41,292 KB
testcase_11 AC 121 ms
41,344 KB
testcase_12 AC 117 ms
41,328 KB
testcase_13 AC 105 ms
40,144 KB
testcase_14 AC 116 ms
41,032 KB
testcase_15 AC 116 ms
41,092 KB
testcase_16 AC 116 ms
41,016 KB
testcase_17 AC 103 ms
40,148 KB
testcase_18 AC 117 ms
41,456 KB
testcase_19 AC 116 ms
41,332 KB
testcase_20 AC 119 ms
41,340 KB
testcase_21 AC 115 ms
41,328 KB
testcase_22 AC 117 ms
41,344 KB
testcase_23 AC 118 ms
41,204 KB
testcase_24 AC 117 ms
41,144 KB
testcase_25 AC 118 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
//セミがなくクラスを冬に作るってどうなの...((
//未完未完未完
public class Semi {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ

		Scanner kb=new Scanner(System.in);
		String a=kb.next();
		char min[]=a.toCharArray();
		int count=0;
		for(int i=0;i<a.length();i++){
			int t=i+1;
			int u=i;
			if(t>=a.length()){
				break;
			}
			else if(min[i]=='m'&&min[t]=='i'){
				while(min[u]!='n'){
					u++;
				}
				count++;
			}
		}
		System.out.printf("%d\n", count);
	}
}

0