結果

問題 No.418 ミンミンゼミ
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-06-17 13:43:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 1,000 ms
コード長 174 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 86,908 KB
実行使用メモリ 73,184 KB
最終ジャッジ日時 2023-09-07 10:27:22
合計ジャッジ時間 5,123 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
72,972 KB
testcase_01 AC 107 ms
72,972 KB
testcase_02 AC 104 ms
72,912 KB
testcase_03 AC 105 ms
72,992 KB
testcase_04 AC 110 ms
73,116 KB
testcase_05 AC 107 ms
73,028 KB
testcase_06 AC 108 ms
72,920 KB
testcase_07 AC 107 ms
72,916 KB
testcase_08 AC 105 ms
72,916 KB
testcase_09 AC 105 ms
72,708 KB
testcase_10 AC 110 ms
72,720 KB
testcase_11 AC 106 ms
72,876 KB
testcase_12 AC 108 ms
73,184 KB
testcase_13 AC 106 ms
72,952 KB
testcase_14 AC 110 ms
73,128 KB
testcase_15 AC 106 ms
72,828 KB
testcase_16 AC 104 ms
72,992 KB
testcase_17 AC 108 ms
73,028 KB
testcase_18 AC 105 ms
72,872 KB
testcase_19 AC 106 ms
72,872 KB
testcase_20 AC 105 ms
72,868 KB
testcase_21 AC 104 ms
72,928 KB
testcase_22 AC 108 ms
72,716 KB
testcase_23 AC 106 ms
72,700 KB
testcase_24 AC 105 ms
72,924 KB
testcase_25 AC 105 ms
72,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

S = input()[:-1]
print(S.count('m'))
0