結果
| 問題 | No.345 最小チワワ問題 |
| コンテスト | |
| ユーザー |
FVRChan
|
| 提出日時 | 2017-12-05 22:22:13 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 125 bytes |
| 記録 | |
| コンパイル時間 | 816 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 20,576 KB |
| 最終ジャッジ日時 | 2026-05-22 17:22:02 |
| 合計ジャッジ時間 | 6,756 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 RE * 1 |
| other | AC * 2 WA * 19 RE * 8 |
ソースコード
import re s,matcher=input(),"c.*w.*w" matches=re.findall(matcher,s) matches.sort(key=lambda x:len(x)) print(len(matches[0]))
FVRChan