結果

問題 No.3020 サンシャイン◯崎
ユーザー fal_rndfal_rnd
提出日時 2017-03-31 22:25:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 218 ms / 1,000 ms
コード長 922 bytes
コンパイル時間 2,365 ms
コンパイル使用メモリ 79,672 KB
実行使用メモリ 44,120 KB
最終ジャッジ日時 2024-06-06 02:48:01
合計ジャッジ時間 6,979 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,024 KB
testcase_01 AC 116 ms
41,248 KB
testcase_02 AC 114 ms
40,016 KB
testcase_03 AC 116 ms
40,848 KB
testcase_04 AC 118 ms
41,112 KB
testcase_05 AC 207 ms
43,600 KB
testcase_06 AC 120 ms
41,252 KB
testcase_07 AC 121 ms
41,108 KB
testcase_08 AC 181 ms
42,344 KB
testcase_09 AC 185 ms
42,288 KB
testcase_10 AC 200 ms
44,120 KB
testcase_11 AC 205 ms
43,488 KB
testcase_12 AC 201 ms
44,064 KB
testcase_13 AC 197 ms
43,660 KB
testcase_14 AC 218 ms
43,628 KB
testcase_15 AC 199 ms
43,576 KB
testcase_16 AC 200 ms
43,436 KB
testcase_17 AC 205 ms
43,352 KB
testcase_18 AC 209 ms
43,948 KB
testcase_19 AC 201 ms
43,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Scanner;

public class Main{

	static Scanner s=new Scanner(System.in);

	public static void main(String __[]){
		input();
		solve();
	}

	private static void input(){
	}

	private static void solve(){
		char[] in=s.next().toCharArray();
		Counter<Character> c = new Counter<>();
		c.add('Y',0);
		c.add('E',0);
		c.add('A',0);
		c.add('H',0);
		c.add('!',0);
		for(char ch:in)
			c.add(ch);
		System.out.printf("%d %d %d %d %d\n",
				c.map.get('Y'),
				c.map.get('E'),
				c.map.get('A'),
				c.map.get('H'),
				c.map.get('!')
				);
	}
}

class Counter<T>{
	public HashMap<T, Integer> map;
	public Counter(int initSize) {
		map = new HashMap<>(initSize);
	}
	public Counter() {
		this(10);
	}
	public void add(T key, int v) {
		Integer i;
		if((i=map.get(key))==null) {
			map.put(key, v);
		}else {
			map.put(key, i+v);
		}
	}
	public void add(T key) {
		add(key,1);
	}
}
0