結果

問題 No.345 最小チワワ問題
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-14 20:54:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 58,112 KB
最終ジャッジ日時 2024-06-27 12:05:09
合計ジャッジ時間 2,606 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

ans=1000000
s=input()
for i in range(len(s)):
    res=0
    for j in range(i,len(s)):
        if res==2 and s[j]=='w':
            ans=min(ans,j-i+1)
            break
        elif res==1 and s[j]=='w':
            res+=1
        elif res==0 and s[j]=='c':
            res+=1
if ans>1000:
    print(-1)
else:
    print(ans)
0