結果

問題 No.345 最小チワワ問題
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-10 19:47:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,708 KB
実行使用メモリ 62,996 KB
最終ジャッジ日時 2025-01-02 16:19:34
合計ジャッジ時間 2,550 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,092 KB
testcase_01 AC 38 ms
58,732 KB
testcase_02 AC 37 ms
59,484 KB
testcase_03 AC 38 ms
60,164 KB
testcase_04 AC 32 ms
53,492 KB
testcase_05 AC 33 ms
52,492 KB
testcase_06 AC 32 ms
52,788 KB
testcase_07 AC 38 ms
54,220 KB
testcase_08 AC 39 ms
59,424 KB
testcase_09 AC 40 ms
59,344 KB
testcase_10 AC 43 ms
61,500 KB
testcase_11 AC 42 ms
59,552 KB
testcase_12 AC 40 ms
60,612 KB
testcase_13 AC 41 ms
60,060 KB
testcase_14 AC 43 ms
62,200 KB
testcase_15 AC 44 ms
62,996 KB
testcase_16 AC 40 ms
62,036 KB
testcase_17 AC 36 ms
52,488 KB
testcase_18 AC 44 ms
62,716 KB
testcase_19 AC 33 ms
52,448 KB
testcase_20 AC 32 ms
52,404 KB
testcase_21 AC 34 ms
52,592 KB
testcase_22 AC 35 ms
59,448 KB
testcase_23 AC 33 ms
52,180 KB
testcase_24 AC 32 ms
52,772 KB
testcase_25 AC 33 ms
53,292 KB
testcase_26 AC 33 ms
52,352 KB
testcase_27 AC 38 ms
60,352 KB
testcase_28 AC 37 ms
59,272 KB
testcase_29 AC 45 ms
62,512 KB
testcase_30 AC 43 ms
61,752 KB
testcase_31 AC 33 ms
53,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = int(len(s))
ans = 10**10
for i in range(n):
    for j in range(i + 1, n):
        for k in range(j + 1, n):
            if 'c' == s[i] and 'w' == s[j] == s[k]:
                ans = min(ans, k - i + 1)
print(ans if ans != 10**10 else -1)
0