結果

問題 No.345 最小チワワ問題
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-25 11:46:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 556 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 54,132 KB
最終ジャッジ日時 2024-06-13 04:41:52
合計ジャッジ時間 3,371 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,784 KB
testcase_01 AC 39 ms
52,892 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 40 ms
53,808 KB
testcase_04 AC 39 ms
53,256 KB
testcase_05 AC 38 ms
52,336 KB
testcase_06 AC 39 ms
52,644 KB
testcase_07 AC 38 ms
52,792 KB
testcase_08 AC 39 ms
52,212 KB
testcase_09 AC 39 ms
52,464 KB
testcase_10 AC 38 ms
52,932 KB
testcase_11 AC 38 ms
53,344 KB
testcase_12 AC 39 ms
53,156 KB
testcase_13 AC 38 ms
53,420 KB
testcase_14 AC 39 ms
53,216 KB
testcase_15 AC 38 ms
53,096 KB
testcase_16 AC 38 ms
52,832 KB
testcase_17 AC 38 ms
52,740 KB
testcase_18 AC 39 ms
54,132 KB
testcase_19 AC 38 ms
52,744 KB
testcase_20 AC 39 ms
52,520 KB
testcase_21 AC 38 ms
52,892 KB
testcase_22 AC 37 ms
52,952 KB
testcase_23 AC 37 ms
53,072 KB
testcase_24 AC 38 ms
52,952 KB
testcase_25 AC 38 ms
52,216 KB
testcase_26 AC 38 ms
53,696 KB
testcase_27 AC 39 ms
52,824 KB
testcase_28 AC 37 ms
52,616 KB
testcase_29 AC 37 ms
52,620 KB
testcase_30 AC 38 ms
53,032 KB
testcase_31 AC 39 ms
52,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = str(input())
C = []
W = []
for i, c in enumerate(s):
    if c == 'c':
        C.append(i)
    if c == 'w':
        W.append(i)

import bisect
INF = 10**18
ans = INF
for ci in C:
    i = bisect.bisect_left(W, ci)
    if len(W)-i < 2:
        break
    ans = min(ans, W[i+1]-ci+1)
if ans != INF:
    print(ans)
else:
    print(-1)
0