結果

問題 No.345 最小チワワ問題
ユーザー ondy_candyondy_candy
提出日時 2016-08-20 03:25:44
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-25 11:51:58
合計ジャッジ時間 2,001 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
if __name__ == '__main__':
    s = input()
    c = sorted([i for i in range(len(s)) if s[i] == "c"])
    w = sorted([i for i in range(len(s)) if s[i] == "w"])
    
    found = []
    for i in c:
        wcount = 0
        for j in w:
            if i < j:
                wcount += 1
                if wcount == 2:
                    found.append(j - i + 1)
                    break
    
    result = -1               
    if len(found) > 0:
        result = min(found)
    print(result)
0