結果

問題 No.345 最小チワワ問題
ユーザー boya978
提出日時 2019-09-18 01:06:44
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 729 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-07 14:05:44
合計ジャッジ時間 1,826 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

word = input()
gotCww=False
ans=100
w_started=False
w=0
letters=0
cww=False

for i in range(len(word)):
    if word[i]=="c":
        test=word[i::]
        
        for j in range(len(test)):
            letters+=1
            
            if test[j]=="c":
                if not w_started:
                    letters=1

            if test[j]=="w":
                w_started=True
                w+=1
                    
            if w==2:
                cww=True   
                break
    
    if cww:
        gotCww=True
        if letters < ans:
            ans=letters
            
    w_started=False
    w=0
    letters=0
    cww=False
           
                    
if gotCww:
    print(ans)
else:
    print(-1)
0