結果

問題 No.345 最小チワワ問題
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-15 09:00:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 54,020 KB
最終ジャッジ日時 2024-09-17 16:45:09
合計ジャッジ時間 2,376 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
c, cw = None, None
ans = float("inf")
for i in range(len(s)):
    if s[i] == "c":
        c = i
    elif s[i] == "w":
        if cw is not None:
            ans = min(ans, i - cw + 1)
        if c is not None:
            cw = c
print([ans, -1][ans == float("inf")])
0