結果

問題 No.8020 サンシャイン◯崎
ユーザー yagi2yagi2
提出日時 2017-04-25 18:10:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 548 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 75,988 KB
実行使用メモリ 53,992 KB
最終ジャッジ日時 2024-12-23 14:05:48
合計ジャッジ時間 8,937 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,300 KB
testcase_01 WA -
testcase_02 AC 136 ms
41,168 KB
testcase_03 AC 119 ms
40,360 KB
testcase_04 WA -
testcase_05 AC 393 ms
53,992 KB
testcase_06 AC 136 ms
41,396 KB
testcase_07 AC 140 ms
41,260 KB
testcase_08 AC 279 ms
49,424 KB
testcase_09 AC 281 ms
49,836 KB
testcase_10 AC 373 ms
51,856 KB
testcase_11 AC 374 ms
52,408 KB
testcase_12 AC 383 ms
52,380 KB
testcase_13 AC 396 ms
53,880 KB
testcase_14 AC 375 ms
51,788 KB
testcase_15 AC 366 ms
53,508 KB
testcase_16 AC 366 ms
52,448 KB
testcase_17 AC 389 ms
53,320 KB
testcase_18 AC 381 ms
52,060 KB
testcase_19 AC 370 ms
52,188 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