結果

問題 No.418 ミンミンゼミ
ユーザー len_prog
提出日時 2016-12-06 11:56:05
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 336 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-11-28 01:55:37
合計ジャッジ時間 1,372 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- 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