結果

問題 No.418 ミンミンゼミ
ユーザー deepjugglingdeepjuggling
提出日時 2023-03-01 23:04:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 1,000 ms
コード長 72 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 87,104 KB
実行使用メモリ 71,928 KB
最終ジャッジ日時 2023-10-15 02:38:27
合計ジャッジ時間 4,342 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
71,924 KB
testcase_01 AC 99 ms
71,636 KB
testcase_02 AC 102 ms
71,668 KB
testcase_03 AC 101 ms
71,912 KB
testcase_04 AC 99 ms
71,788 KB
testcase_05 AC 100 ms
71,720 KB
testcase_06 AC 101 ms
71,776 KB
testcase_07 AC 101 ms
71,868 KB
testcase_08 AC 99 ms
71,856 KB
testcase_09 AC 102 ms
71,696 KB
testcase_10 AC 101 ms
71,584 KB
testcase_11 AC 99 ms
71,704 KB
testcase_12 AC 100 ms
71,700 KB
testcase_13 AC 99 ms
71,672 KB
testcase_14 AC 100 ms
71,580 KB
testcase_15 AC 101 ms
71,636 KB
testcase_16 AC 100 ms
71,864 KB
testcase_17 AC 101 ms
71,584 KB
testcase_18 AC 100 ms
71,700 KB
testcase_19 AC 100 ms
71,840 KB
testcase_20 AC 99 ms
71,848 KB
testcase_21 AC 100 ms
71,892 KB
testcase_22 AC 100 ms
71,928 KB
testcase_23 AC 99 ms
71,884 KB
testcase_24 AC 99 ms
71,852 KB
testcase_25 AC 98 ms
71,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
s = input()
x = Counter(s)
print(x["m"])
0