結果

問題 No.8020 サンシャイン◯崎
ユーザー yagi2yagi2
提出日時 2017-04-25 18:13:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 396 ms / 1,000 ms
コード長 773 bytes
コンパイル時間 2,625 ms
コンパイル使用メモリ 76,536 KB
実行使用メモリ 54,120 KB
最終ジャッジ日時 2024-12-23 14:05:58
合計ジャッジ時間 9,175 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,648 KB
testcase_01 AC 135 ms
41,188 KB
testcase_02 AC 137 ms
41,344 KB
testcase_03 AC 131 ms
41,264 KB
testcase_04 AC 132 ms
41,008 KB
testcase_05 AC 391 ms
54,120 KB
testcase_06 AC 135 ms
41,108 KB
testcase_07 AC 138 ms
41,196 KB
testcase_08 AC 281 ms
49,960 KB
testcase_09 AC 287 ms
49,940 KB
testcase_10 AC 384 ms
53,580 KB
testcase_11 AC 361 ms
51,148 KB
testcase_12 AC 393 ms
53,844 KB
testcase_13 AC 396 ms
53,516 KB
testcase_14 AC 392 ms
53,208 KB
testcase_15 AC 372 ms
51,564 KB
testcase_16 AC 375 ms
52,264 KB
testcase_17 AC 376 ms
53,520 KB
testcase_18 AC 383 ms
53,780 KB
testcase_19 AC 388 ms
53,612 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.containsKey("Y"))? YEAH.get("Y") : 0,
                (YEAH.containsKey("E"))? YEAH.get("E") : 0,
                (YEAH.containsKey("A"))? YEAH.get("A") : 0,
                (YEAH.containsKey("H"))? YEAH.get("H") : 0,
                (YEAH.containsKey("!"))? YEAH.get("!") : 0);
    }
}
0