結果

問題 No.418 ミンミンゼミ
ユーザー FVRChanFVRChan
提出日時 2017-10-03 09:20:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 379 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 74,648 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-07-16 02:27:48
合計ジャッジ時間 5,957 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,164 KB
testcase_01 AC 122 ms
54,400 KB
testcase_02 AC 119 ms
53,936 KB
testcase_03 AC 108 ms
53,004 KB
testcase_04 AC 117 ms
54,016 KB
testcase_05 AC 117 ms
54,168 KB
testcase_06 AC 117 ms
53,984 KB
testcase_07 AC 121 ms
54,016 KB
testcase_08 AC 117 ms
54,004 KB
testcase_09 AC 121 ms
54,116 KB
testcase_10 AC 116 ms
54,088 KB
testcase_11 AC 118 ms
53,880 KB
testcase_12 AC 119 ms
53,852 KB
testcase_13 AC 108 ms
53,016 KB
testcase_14 AC 119 ms
54,032 KB
testcase_15 AC 111 ms
53,272 KB
testcase_16 AC 115 ms
53,916 KB
testcase_17 AC 101 ms
52,780 KB
testcase_18 AC 105 ms
53,064 KB
testcase_19 AC 118 ms
54,120 KB
testcase_20 AC 116 ms
54,164 KB
testcase_21 AC 113 ms
53,920 KB
testcase_22 AC 117 ms
54,096 KB
testcase_23 AC 119 ms
54,072 KB
testcase_24 AC 125 ms
53,764 KB
testcase_25 AC 115 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		String s=sc.nextLine();
		int counter=0;
		while(true){
			if(s.indexOf("mi") == -1 || s.indexOf("n") == -1){
				break;
			}else{
				s=s.substring(s.indexOf("n")+1);
				counter++;
			}
		}System.out.println(counter);
	}
}
0