結果

問題 No.345 最小チワワ問題
ユーザー nebukuro09nebukuro09
提出日時 2016-09-06 16:17:01
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 73 bytes
コンパイル時間 47 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-27 16:46:24
合計ジャッジ時間 1,188 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 10 ms
6,944 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 11 ms
6,948 KB
testcase_04 WA -
testcase_05 AC 10 ms
6,948 KB
testcase_06 WA -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 8 ms
6,944 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 9 ms
6,940 KB
testcase_15 WA -
testcase_16 AC 9 ms
6,944 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 9 ms
6,940 KB
testcase_21 RE -
testcase_22 AC 9 ms
6,940 KB
testcase_23 AC 8 ms
6,940 KB
testcase_24 AC 9 ms
6,944 KB
testcase_25 AC 9 ms
6,940 KB
testcase_26 AC 10 ms
6,944 KB
testcase_27 WA -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
testcase_31 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
print min(map(len, re.findall(r'(?=(c.*w.*w))', raw_input())))
0