結果
問題 | No.8020 サンシャイン◯崎 |
ユーザー | rpy3cpp |
提出日時 | 2017-04-01 00:11:24 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 46 ms / 1,000 ms |
コード長 | 248 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-12-23 14:03:54 |
合計ジャッジ時間 | 1,481 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 |
ソースコード
S = input().rstrip() freq = dict() for c in S: if c not in freq: freq[c] = 1 else: freq[c] += 1 for c in 'YEAH!': if c not in freq: freq[c] = 0 print('{} {} {} {} {}'.format(freq['Y'], freq['E'], freq['A'],freq['H'], freq['!']))