結果

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

ソースコード

diff #

S = input()
c_w_w =[]
for x in range(len(S)):
    if S[x] == "c":
        for y in range(x+1,len(S)):
            if S[y] == "w":
                for z in range(y+1,len(S)):
                    if S[z] == "w":
                        c_w_w.append(z - x + 1)
if len(c_w_w) != 0:
    print(min(c_w_w))
else:
    print(-1)
0