結果

問題 No.345 最小チワワ問題
ユーザー FVRChanFVRChan
提出日時 2017-12-06 21:40:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-25 12:11:32
合計ジャッジ時間 2,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
s,matcher,patterns,res=input(),"c.*?w.*?w",[],[]
for (i,c) in enumerate(s):
    if c=="c":
        patterns.append(s[i:])
for pattern in patterns:    
    matches=re.findall(matcher,pattern)
    for match in matches:
        res.append(match)
res.sort(key=lambda x:len(x))
if len(res)!=0:
    print(len(res[0]))
else:
    print(-1)
0