結果

問題 No.3020 サンシャイン◯崎
ユーザー TakoKurageTakoKurage
提出日時 2020-10-11 14:36:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 24 ms / 1,000 ms
コード長 106 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 10,444 KB
実行使用メモリ 8,596 KB
最終ジャッジ日時 2023-09-27 22:57:13
合計ジャッジ時間 2,207 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,336 KB
testcase_01 AC 17 ms
8,292 KB
testcase_02 AC 18 ms
8,336 KB
testcase_03 AC 17 ms
8,432 KB
testcase_04 AC 16 ms
8,404 KB
testcase_05 AC 21 ms
8,588 KB
testcase_06 AC 16 ms
8,424 KB
testcase_07 AC 17 ms
8,368 KB
testcase_08 AC 18 ms
8,508 KB
testcase_09 AC 19 ms
8,540 KB
testcase_10 AC 21 ms
8,460 KB
testcase_11 AC 22 ms
8,560 KB
testcase_12 AC 23 ms
8,596 KB
testcase_13 AC 23 ms
8,452 KB
testcase_14 AC 24 ms
8,428 KB
testcase_15 AC 22 ms
8,584 KB
testcase_16 AC 22 ms
8,420 KB
testcase_17 AC 22 ms
8,460 KB
testcase_18 AC 24 ms
8,536 KB
testcase_19 AC 22 ms
8,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

S = input()

C = Counter(S)
print(C["Y"], C["E"], C["A"], C["H"], C["!"])
0