結果

問題 No.418 ミンミンゼミ
ユーザー otsunekootsuneko
提出日時 2021-05-07 16:02:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 1,000 ms
コード長 67 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 87,084 KB
実行使用メモリ 79,984 KB
最終ジャッジ日時 2023-10-13 07:11:52
合計ジャッジ時間 5,265 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
79,756 KB
testcase_01 AC 146 ms
79,620 KB
testcase_02 AC 143 ms
79,912 KB
testcase_03 AC 142 ms
79,952 KB
testcase_04 AC 144 ms
79,916 KB
testcase_05 AC 145 ms
79,928 KB
testcase_06 AC 144 ms
79,880 KB
testcase_07 AC 142 ms
79,712 KB
testcase_08 AC 145 ms
79,860 KB
testcase_09 AC 144 ms
79,872 KB
testcase_10 AC 144 ms
79,876 KB
testcase_11 AC 144 ms
79,860 KB
testcase_12 AC 143 ms
79,704 KB
testcase_13 AC 144 ms
79,952 KB
testcase_14 AC 140 ms
79,816 KB
testcase_15 AC 143 ms
79,700 KB
testcase_16 AC 144 ms
79,760 KB
testcase_17 AC 144 ms
79,836 KB
testcase_18 AC 142 ms
79,824 KB
testcase_19 AC 143 ms
79,876 KB
testcase_20 AC 146 ms
79,940 KB
testcase_21 AC 140 ms
79,904 KB
testcase_22 AC 145 ms
79,924 KB
testcase_23 AC 146 ms
79,880 KB
testcase_24 AC 142 ms
79,984 KB
testcase_25 AC 141 ms
79,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
S = input()
l = re.findall(r'mi[-]*n',S)
print(len(l))
0