結果

問題 No.3020 サンシャイン◯崎
ユーザー shinwisteriashinwisteria
提出日時 2017-03-31 22:34:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 326 ms / 1,000 ms
コード長 547 bytes
コンパイル時間 3,369 ms
コンパイル使用メモリ 76,912 KB
実行使用メモリ 43,620 KB
最終ジャッジ日時 2024-06-06 02:57:19
合計ジャッジ時間 8,958 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,632 KB
testcase_01 AC 123 ms
40,344 KB
testcase_02 AC 134 ms
40,300 KB
testcase_03 AC 124 ms
42,032 KB
testcase_04 AC 130 ms
41,316 KB
testcase_05 AC 313 ms
43,312 KB
testcase_06 AC 137 ms
41,592 KB
testcase_07 AC 143 ms
41,828 KB
testcase_08 AC 213 ms
42,732 KB
testcase_09 AC 215 ms
42,680 KB
testcase_10 AC 319 ms
43,340 KB
testcase_11 AC 261 ms
43,388 KB
testcase_12 AC 305 ms
43,120 KB
testcase_13 AC 311 ms
43,184 KB
testcase_14 AC 305 ms
43,280 KB
testcase_15 AC 301 ms
43,428 KB
testcase_16 AC 289 ms
43,620 KB
testcase_17 AC 316 ms
43,312 KB
testcase_18 AC 319 ms
43,312 KB
testcase_19 AC 326 ms
43,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Ikezaki {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		StringBuilder str = new StringBuilder(s.nextLine());
		s.close();
		int[] c = new int[5];
		while(str.length() != 0){
			char t = str.charAt(0);
			if(t == 'Y'){
				c[0]++;
			}else if(t == 'E'){
				c[1]++;
			}else if(t == 'A'){
				c[2]++;
			}else if(t == 'H'){
				c[3]++;
			}else{
				c[4]++;
			}
			str.deleteCharAt(0);
		}
		for(int a:c){
			System.out.print(a + " ");
		}
		System.out.println();

	}

}
0