結果

問題 No.3020 サンシャイン◯崎
ユーザー 37zigen37zigen
提出日時 2017-03-31 22:36:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 242 ms / 1,000 ms
コード長 647 bytes
コンパイル時間 2,380 ms
コンパイル使用メモリ 77,424 KB
実行使用メモリ 42,632 KB
最終ジャッジ日時 2024-06-06 02:55:40
合計ジャッジ時間 7,169 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,652 KB
testcase_01 AC 149 ms
41,608 KB
testcase_02 AC 151 ms
41,492 KB
testcase_03 AC 145 ms
41,312 KB
testcase_04 AC 142 ms
41,540 KB
testcase_05 AC 230 ms
42,332 KB
testcase_06 AC 152 ms
41,536 KB
testcase_07 AC 150 ms
41,740 KB
testcase_08 AC 198 ms
41,868 KB
testcase_09 AC 213 ms
41,988 KB
testcase_10 AC 223 ms
42,412 KB
testcase_11 AC 221 ms
42,264 KB
testcase_12 AC 232 ms
42,232 KB
testcase_13 AC 242 ms
42,236 KB
testcase_14 AC 237 ms
42,632 KB
testcase_15 AC 239 ms
42,496 KB
testcase_16 AC 224 ms
42,468 KB
testcase_17 AC 223 ms
42,392 KB
testcase_18 AC 229 ms
42,232 KB
testcase_19 AC 222 ms
42,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		char[] s = { 'Y', 'E', 'A', 'H', '!' };
		String o = sc.next();
		int[] cnt = new int[s.length];
		for (int i = 0; i < o.length(); ++i) {
			for (int j = 0; j < s.length; ++j) {
				if (s[j] == o.charAt(i)) {
					++cnt[j];
				}
			}
		}
		for (int i = 0; i < cnt.length; ++i) {
			System.out.print(cnt[i] + " ");
		}
		System.out.println();
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0