結果

問題 No.418 ミンミンゼミ
ユーザー otsunekootsuneko
提出日時 2021-05-07 16:02:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 69 bytes
コンパイル時間 999 ms
コンパイル使用メモリ 87,236 KB
実行使用メモリ 80,132 KB
最終ジャッジ日時 2023-10-13 07:11:35
合計ジャッジ時間 6,064 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
79,752 KB
testcase_01 AC 138 ms
79,980 KB
testcase_02 AC 140 ms
79,852 KB
testcase_03 AC 138 ms
79,864 KB
testcase_04 AC 141 ms
79,864 KB
testcase_05 AC 138 ms
79,796 KB
testcase_06 AC 137 ms
79,960 KB
testcase_07 AC 139 ms
79,948 KB
testcase_08 AC 139 ms
79,776 KB
testcase_09 AC 138 ms
79,984 KB
testcase_10 AC 138 ms
79,816 KB
testcase_11 AC 139 ms
79,808 KB
testcase_12 AC 140 ms
79,832 KB
testcase_13 AC 139 ms
80,132 KB
testcase_14 AC 138 ms
79,880 KB
testcase_15 AC 134 ms
79,896 KB
testcase_16 AC 137 ms
79,780 KB
testcase_17 AC 138 ms
79,980 KB
testcase_18 AC 138 ms
79,756 KB
testcase_19 AC 138 ms
79,832 KB
testcase_20 AC 139 ms
79,752 KB
testcase_21 AC 136 ms
79,704 KB
testcase_22 AC 135 ms
79,868 KB
testcase_23 AC 137 ms
79,868 KB
testcase_24 AC 136 ms
79,956 KB
testcase_25 AC 135 ms
79,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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