結果

問題 No.3020 サンシャイン◯崎
ユーザー yagi2yagi2
提出日時 2017-04-25 18:13:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 379 ms / 1,000 ms
コード長 773 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 76,412 KB
実行使用メモリ 64,236 KB
最終ジャッジ日時 2024-06-06 03:02:47
合計ジャッジ時間 8,866 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,788 KB
testcase_01 AC 130 ms
53,828 KB
testcase_02 AC 138 ms
54,188 KB
testcase_03 AC 133 ms
54,224 KB
testcase_04 AC 130 ms
54,360 KB
testcase_05 AC 363 ms
64,044 KB
testcase_06 AC 135 ms
53,844 KB
testcase_07 AC 135 ms
54,180 KB
testcase_08 AC 271 ms
61,360 KB
testcase_09 AC 275 ms
59,324 KB
testcase_10 AC 361 ms
63,988 KB
testcase_11 AC 360 ms
64,024 KB
testcase_12 AC 372 ms
64,104 KB
testcase_13 AC 370 ms
64,208 KB
testcase_14 AC 372 ms
64,056 KB
testcase_15 AC 360 ms
63,372 KB
testcase_16 AC 351 ms
63,608 KB
testcase_17 AC 369 ms
63,852 KB
testcase_18 AC 379 ms
64,236 KB
testcase_19 AC 368 ms
64,148 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