結果

問題 No.418 ミンミンゼミ
ユーザー deepjugglingdeepjuggling
提出日時 2023-03-01 23:04:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 1,000 ms
コード長 72 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 55,168 KB
最終ジャッジ日時 2024-09-16 20:10:27
合計ジャッジ時間 2,656 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,052 KB
testcase_01 AC 42 ms
54,384 KB
testcase_02 AC 42 ms
53,936 KB
testcase_03 AC 41 ms
53,472 KB
testcase_04 AC 42 ms
54,532 KB
testcase_05 AC 43 ms
54,912 KB
testcase_06 AC 42 ms
54,412 KB
testcase_07 AC 42 ms
53,992 KB
testcase_08 AC 44 ms
53,556 KB
testcase_09 AC 42 ms
53,552 KB
testcase_10 AC 42 ms
54,252 KB
testcase_11 AC 44 ms
55,168 KB
testcase_12 AC 46 ms
54,716 KB
testcase_13 AC 42 ms
54,728 KB
testcase_14 AC 42 ms
54,568 KB
testcase_15 AC 43 ms
54,316 KB
testcase_16 AC 42 ms
54,048 KB
testcase_17 AC 42 ms
53,800 KB
testcase_18 AC 41 ms
54,956 KB
testcase_19 AC 41 ms
54,496 KB
testcase_20 AC 41 ms
54,044 KB
testcase_21 AC 41 ms
53,496 KB
testcase_22 AC 41 ms
53,596 KB
testcase_23 AC 42 ms
54,520 KB
testcase_24 AC 42 ms
54,144 KB
testcase_25 AC 40 ms
53,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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