結果

問題 No.418 ミンミンゼミ
ユーザー maninimanini
提出日時 2016-09-11 01:04:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 291 bytes
コンパイル時間 2,278 ms
コンパイル使用メモリ 75,740 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-07-16 01:22:03
合計ジャッジ時間 7,012 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
39,720 KB
testcase_01 AC 103 ms
40,308 KB
testcase_02 AC 112 ms
41,168 KB
testcase_03 AC 115 ms
41,212 KB
testcase_04 AC 116 ms
41,272 KB
testcase_05 AC 120 ms
41,328 KB
testcase_06 AC 116 ms
41,020 KB
testcase_07 AC 116 ms
41,088 KB
testcase_08 AC 115 ms
41,416 KB
testcase_09 AC 119 ms
41,536 KB
testcase_10 AC 114 ms
40,984 KB
testcase_11 AC 103 ms
40,140 KB
testcase_12 AC 116 ms
41,592 KB
testcase_13 AC 119 ms
41,180 KB
testcase_14 AC 122 ms
41,260 KB
testcase_15 AC 119 ms
41,332 KB
testcase_16 AC 116 ms
41,188 KB
testcase_17 AC 117 ms
41,256 KB
testcase_18 AC 120 ms
41,408 KB
testcase_19 AC 125 ms
41,116 KB
testcase_20 AC 116 ms
41,168 KB
testcase_21 AC 121 ms
41,308 KB
testcase_22 AC 117 ms
40,952 KB
testcase_23 AC 112 ms
41,460 KB
testcase_24 AC 114 ms
41,008 KB
testcase_25 AC 111 ms
41,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
 
public class Main {
 
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String str=s.next();
		
		int count=0;
		for(int i=0;i<str.length();i++){
			if(str.charAt(i)=='n'){
				count++;
			}
		}
		
		System.out.println(count);
	}
}
0