結果
| 問題 | No.418 ミンミンゼミ |
| コンテスト | |
| ユーザー |
len_prog
|
| 提出日時 | 2016-12-06 11:56:05 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 336 bytes |
| 記録 | |
| コンパイル時間 | 68 ms |
| コンパイル使用メモリ | 81,024 KB |
| 実行使用メモリ | 81,920 KB |
| 最終ジャッジ日時 | 2026-07-18 11:26:59 |
| 合計ジャッジ時間 | 3,270 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 25 |
ソースコード
# -*- 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()
len_prog