結果

問題 No.3020 サンシャイン◯崎
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-03-31 22:25:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 257 ms / 1,000 ms
コード長 497 bytes
コンパイル時間 2,309 ms
コンパイル使用メモリ 76,172 KB
実行使用メモリ 56,888 KB
最終ジャッジ日時 2024-06-06 02:53:05
合計ジャッジ時間 7,665 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
54,892 KB
testcase_01 AC 182 ms
54,920 KB
testcase_02 AC 187 ms
55,080 KB
testcase_03 AC 183 ms
54,868 KB
testcase_04 AC 186 ms
54,928 KB
testcase_05 AC 252 ms
56,888 KB
testcase_06 AC 156 ms
54,772 KB
testcase_07 AC 178 ms
55,040 KB
testcase_08 AC 220 ms
55,216 KB
testcase_09 AC 234 ms
55,308 KB
testcase_10 AC 250 ms
56,560 KB
testcase_11 AC 246 ms
56,612 KB
testcase_12 AC 257 ms
55,384 KB
testcase_13 AC 248 ms
55,148 KB
testcase_14 AC 250 ms
55,548 KB
testcase_15 AC 253 ms
56,592 KB
testcase_16 AC 253 ms
56,496 KB
testcase_17 AC 245 ms
54,980 KB
testcase_18 AC 249 ms
55,772 KB
testcase_19 AC 250 ms
56,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        int [] ans = new int [5];
        char [] c = {'Y','E','A','H','!'};
        for(int i=0; i<S.length(); i++){
            char t = S.charAt(i);
            for(int j=0; j<5; j++){
                if(t==c[j])ans[j]++;
            }
        }
        System.out.println(ans[0]+" "+ans[1]+" "+ans[2]+" "+ans[3]+" "+ans[4]);
    }
}
0