結果

問題 No.345 最小チワワ問題
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-10 19:47:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 64,028 KB
最終ジャッジ日時 2024-06-10 19:47:05
合計ジャッジ時間 2,689 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,952 KB
testcase_01 AC 40 ms
58,508 KB
testcase_02 AC 39 ms
58,120 KB
testcase_03 AC 39 ms
60,044 KB
testcase_04 AC 34 ms
52,688 KB
testcase_05 AC 33 ms
52,184 KB
testcase_06 AC 36 ms
53,068 KB
testcase_07 AC 35 ms
53,036 KB
testcase_08 AC 38 ms
59,104 KB
testcase_09 AC 41 ms
59,500 KB
testcase_10 AC 44 ms
60,988 KB
testcase_11 AC 41 ms
60,004 KB
testcase_12 AC 46 ms
61,324 KB
testcase_13 AC 46 ms
60,272 KB
testcase_14 AC 49 ms
61,028 KB
testcase_15 AC 50 ms
62,636 KB
testcase_16 AC 48 ms
60,712 KB
testcase_17 AC 39 ms
53,304 KB
testcase_18 AC 48 ms
64,028 KB
testcase_19 AC 38 ms
53,628 KB
testcase_20 AC 36 ms
52,016 KB
testcase_21 AC 36 ms
53,572 KB
testcase_22 AC 41 ms
58,824 KB
testcase_23 AC 36 ms
53,484 KB
testcase_24 AC 35 ms
52,976 KB
testcase_25 AC 36 ms
53,372 KB
testcase_26 AC 35 ms
52,316 KB
testcase_27 AC 40 ms
59,400 KB
testcase_28 AC 41 ms
60,168 KB
testcase_29 AC 46 ms
62,020 KB
testcase_30 AC 46 ms
61,800 KB
testcase_31 AC 38 ms
52,624 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