結果
| 問題 | 
                            No.345 最小チワワ問題
                             | 
                    
| コンテスト | |
| ユーザー | 
                             FVRChan
                         | 
                    
| 提出日時 | 2017-12-06 21:39:07 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 317 bytes | 
| コンパイル時間 | 460 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 10,752 KB | 
| 最終ジャッジ日時 | 2024-11-29 01:19:48 | 
| 合計ジャッジ時間 | 2,185 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 2 RE * 1 | 
| other | WA * 21 RE * 8 | 
ソースコード
import re
s,matcher,patterns,res=input(),"c.*?w.*?w",[],[]
for (i,c) in enumerate(s):
    if c=="c":
        patterns.append(s[i:])
print(patterns)
for pattern in patterns:    
    matches=re.findall(matcher,pattern)
    for match in matches:
        res.append(match)
res.sort(key=lambda x:len(x))
print(len(res[0]))
            
            
            
        
            
FVRChan