結果

問題 No.345 最小チワワ問題
ユーザー boya978
提出日時 2019-09-18 01:18:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 747 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-07 14:11:58
合計ジャッジ時間 1,728 ms
ジャッジサーバーID
(参考情報)
judge4 / 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

            elif 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