結果

問題 No.418 ミンミンゼミ
ユーザー shinwisteriashinwisteria
提出日時 2017-03-30 22:41:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 380 bytes
コンパイル時間 4,184 ms
コンパイル使用メモリ 77,924 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-07-16 02:19:24
合計ジャッジ時間 7,032 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,016 KB
testcase_01 AC 113 ms
41,196 KB
testcase_02 AC 119 ms
41,164 KB
testcase_03 AC 121 ms
41,436 KB
testcase_04 AC 113 ms
41,300 KB
testcase_05 AC 114 ms
41,320 KB
testcase_06 AC 114 ms
41,144 KB
testcase_07 AC 113 ms
41,028 KB
testcase_08 AC 118 ms
41,412 KB
testcase_09 AC 112 ms
40,892 KB
testcase_10 AC 110 ms
41,196 KB
testcase_11 AC 103 ms
39,936 KB
testcase_12 AC 118 ms
41,448 KB
testcase_13 AC 118 ms
41,544 KB
testcase_14 AC 113 ms
41,168 KB
testcase_15 AC 119 ms
41,452 KB
testcase_16 AC 119 ms
41,412 KB
testcase_17 AC 123 ms
41,008 KB
testcase_18 AC 119 ms
41,428 KB
testcase_19 AC 123 ms
41,584 KB
testcase_20 AC 124 ms
41,184 KB
testcase_21 AC 113 ms
41,156 KB
testcase_22 AC 117 ms
41,332 KB
testcase_23 AC 116 ms
41,328 KB
testcase_24 AC 107 ms
40,180 KB
testcase_25 AC 112 ms
40,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Minminzemi {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String S = s.nextLine();
		s.close();
		int count = 0;
		while(S.length() != 0){
			int end = S.indexOf("n",0);
			count++;
			if(end != S.length()){
				S = S.substring(end+1);
			}else{
				break;
			}
		}
		System.out.println(count);

	}

}
0