結果

問題 No.3020 サンシャイン◯崎
ユーザー pypypymipypypymi
提出日時 2022-02-20 19:52:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 1,000 ms
コード長 266 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 87,336 KB
実行使用メモリ 79,084 KB
最終ジャッジ日時 2023-09-11 21:09:35
合計ジャッジ時間 3,693 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
71,920 KB
testcase_01 AC 96 ms
71,692 KB
testcase_02 AC 95 ms
71,700 KB
testcase_03 AC 95 ms
71,440 KB
testcase_04 AC 95 ms
71,624 KB
testcase_05 AC 108 ms
78,932 KB
testcase_06 AC 96 ms
71,792 KB
testcase_07 AC 98 ms
71,600 KB
testcase_08 AC 105 ms
78,296 KB
testcase_09 AC 106 ms
78,388 KB
testcase_10 AC 108 ms
78,952 KB
testcase_11 AC 106 ms
78,516 KB
testcase_12 AC 109 ms
78,756 KB
testcase_13 AC 108 ms
79,084 KB
testcase_14 AC 107 ms
78,660 KB
testcase_15 AC 106 ms
78,624 KB
testcase_16 AC 103 ms
78,696 KB
testcase_17 AC 106 ms
78,988 KB
testcase_18 AC 105 ms
79,072 KB
testcase_19 AC 106 ms
78,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 「Y」「E」「A」「H」「!
from collections import Counter
array = dict(Counter(list(input())))

result = []
for i in ["Y","E","A","H","!"]:
    index = 0
    try:
        index = array[i]
    except:
        None
    result.append(index)
print(*result)
    
0