結果

問題 No.345 最小チワワ問題
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-10 19:46:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 228 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 63,040 KB
最終ジャッジ日時 2024-06-10 19:46:52
合計ジャッジ時間 2,552 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,236 KB
testcase_01 AC 36 ms
59,600 KB
testcase_02 AC 36 ms
57,728 KB
testcase_03 AC 38 ms
59,620 KB
testcase_04 AC 32 ms
52,320 KB
testcase_05 AC 31 ms
52,064 KB
testcase_06 AC 30 ms
52,684 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 40 ms
61,728 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 45 ms
60,876 KB
testcase_15 AC 45 ms
61,628 KB
testcase_16 AC 43 ms
61,164 KB
testcase_17 AC 34 ms
52,788 KB
testcase_18 AC 44 ms
62,760 KB
testcase_19 AC 35 ms
52,228 KB
testcase_20 AC 35 ms
52,512 KB
testcase_21 WA -
testcase_22 AC 36 ms
59,916 KB
testcase_23 AC 32 ms
52,860 KB
testcase_24 AC 31 ms
52,752 KB
testcase_25 AC 31 ms
52,624 KB
testcase_26 AC 31 ms
52,152 KB
testcase_27 AC 36 ms
58,588 KB
testcase_28 WA -
testcase_29 AC 50 ms
63,040 KB
testcase_30 AC 44 ms
61,632 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
0