結果
| 問題 |
No.345 最小チワワ問題
|
| コンテスト | |
| ユーザー |
FVRChan
|
| 提出日時 | 2017-12-06 21:38:42 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 312 bytes |
| コンパイル時間 | 293 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-11-29 01:18:26 |
| 合計ジャッジ時間 | 2,246 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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(res[0])
FVRChan