結果

問題 No.418 ミンミンゼミ
コンテスト
ユーザー len_prog
提出日時 2016-12-06 11:56:05
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 336 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 118 ms
コンパイル使用メモリ 77,604 KB
最終ジャッジ日時 2025-12-03 22:52:27
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

# -*- coding: utf-8 -*-
from __future__ import print_function
from __future__ import division
from __future__ import unicode_literals
import math
import itertools
import re

def solve():
    p = re.compile('mi[-]*n(?!n)')
    S = raw_input()

    cicada_all = p.findall(S)

    print(cicada_all)

if __name__ == '__main__':
    solve()
0