結果

問題 No.3020 サンシャイン◯崎
ユーザー yagi2yagi2
提出日時 2017-04-25 18:10:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 548 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 76,312 KB
実行使用メモリ 53,964 KB
最終ジャッジ日時 2024-06-06 03:02:38
合計ジャッジ時間 8,018 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,352 KB
testcase_01 WA -
testcase_02 AC 133 ms
40,988 KB
testcase_03 AC 110 ms
39,828 KB
testcase_04 WA -
testcase_05 AC 349 ms
53,700 KB
testcase_06 AC 123 ms
41,100 KB
testcase_07 AC 122 ms
41,196 KB
testcase_08 AC 249 ms
47,696 KB
testcase_09 AC 254 ms
49,168 KB
testcase_10 AC 346 ms
53,276 KB
testcase_11 AC 332 ms
50,596 KB
testcase_12 AC 337 ms
53,964 KB
testcase_13 AC 344 ms
53,408 KB
testcase_14 AC 356 ms
53,588 KB
testcase_15 AC 330 ms
51,716 KB
testcase_16 AC 329 ms
52,132 KB
testcase_17 AC 356 ms
53,536 KB
testcase_18 AC 349 ms
53,452 KB
testcase_19 AC 341 ms
52,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String[] S = sc.next().split("");

        Map<String, Integer> YEAH = new HashMap<>();
        for (String s : S) {
            if (!YEAH.containsKey(s)) YEAH.put(s, 0);
            YEAH.put(s, YEAH.get(s) + 1);
        }

        System.out.printf("%d %d %d %d %d\n", YEAH.get("Y"), YEAH.get("E"), YEAH.get("A"), YEAH.get("H"), YEAH.get("!"));
    }
}
0