結果

問題 No.8020 サンシャイン◯崎
ユーザー nanaenanae
提出日時 2017-03-31 22:22:11
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 35 ms / 1,000 ms
コード長 358 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-12-23 13:46:25
合計ジャッジ時間 1,373 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import Counter

def solve():
    cnt = Counter(input())

    print(cnt['Y'], cnt['E'], cnt['A'], cnt['H'], cnt['!'])

def debug(x, table):
    for name, val in table.items():
        if x is val:
            print('DEBUG:{} -> {}'.format(name, val), file=sys.stderr)
            return None

if __name__ == '__main__':
    solve()
0