結果

問題 No.418 ミンミンゼミ
ユーザー jimanojimano
提出日時 2018-01-13 22:26:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 1,000 ms
コード長 503 bytes
コンパイル時間 2,950 ms
コンパイル使用メモリ 73,860 KB
実行使用メモリ 37,348 KB
最終ジャッジ日時 2024-07-16 02:31:13
合計ジャッジ時間 5,024 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,088 KB
testcase_01 AC 48 ms
37,228 KB
testcase_02 AC 48 ms
37,220 KB
testcase_03 AC 49 ms
37,208 KB
testcase_04 AC 50 ms
36,976 KB
testcase_05 AC 50 ms
37,008 KB
testcase_06 AC 48 ms
37,024 KB
testcase_07 AC 48 ms
36,956 KB
testcase_08 AC 50 ms
37,128 KB
testcase_09 AC 50 ms
36,896 KB
testcase_10 AC 50 ms
37,276 KB
testcase_11 AC 48 ms
36,888 KB
testcase_12 AC 50 ms
37,348 KB
testcase_13 AC 51 ms
37,008 KB
testcase_14 AC 49 ms
36,904 KB
testcase_15 AC 49 ms
37,008 KB
testcase_16 AC 49 ms
37,132 KB
testcase_17 AC 50 ms
37,140 KB
testcase_18 AC 49 ms
36,656 KB
testcase_19 AC 49 ms
37,144 KB
testcase_20 AC 48 ms
37,348 KB
testcase_21 AC 49 ms
36,908 KB
testcase_22 AC 50 ms
37,132 KB
testcase_23 AC 50 ms
36,652 KB
testcase_24 AC 48 ms
37,060 KB
testcase_25 AC 48 ms
37,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
 * ミンミンゼミ
 */
public class No0418_2 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String[] str = br.readLine().split("n");
			System.out.println(str.length);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0