結果

問題 No.3020 サンシャイン◯崎
ユーザー shobonvipshobonvip
提出日時 2023-02-17 20:12:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 1,000 ms
コード長 117 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 86,472 KB
実行使用メモリ 76,060 KB
最終ジャッジ日時 2023-09-26 17:29:54
合計ジャッジ時間 3,560 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
71,156 KB
testcase_01 AC 83 ms
71,012 KB
testcase_02 AC 90 ms
71,192 KB
testcase_03 AC 81 ms
71,240 KB
testcase_04 AC 76 ms
71,184 KB
testcase_05 AC 120 ms
76,016 KB
testcase_06 AC 76 ms
71,196 KB
testcase_07 AC 77 ms
71,248 KB
testcase_08 AC 82 ms
75,732 KB
testcase_09 AC 82 ms
75,936 KB
testcase_10 AC 81 ms
75,856 KB
testcase_11 AC 82 ms
75,904 KB
testcase_12 AC 83 ms
76,060 KB
testcase_13 AC 81 ms
75,816 KB
testcase_14 AC 84 ms
75,800 KB
testcase_15 AC 81 ms
75,848 KB
testcase_16 AC 82 ms
75,740 KB
testcase_17 AC 83 ms
75,740 KB
testcase_18 AC 85 ms
75,816 KB
testcase_19 AC 92 ms
75,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = {
	"Y" : 0,
	"E" : 1,
	"A" : 2,
	"H" : 3,
	"!" : 4
}

s = input()
v = [0] * 5
for i in s:
	v[d[i]] += 1
print(*v)
0