結果

問題 No.345 最小チワワ問題
ユーザー ohanaohana
提出日時 2023-10-23 17:35:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 60,524 KB
最終ジャッジ日時 2024-09-22 11:30:47
合計ジャッジ時間 2,667 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,852 KB
testcase_01 AC 41 ms
53,724 KB
testcase_02 AC 42 ms
55,156 KB
testcase_03 AC 41 ms
53,992 KB
testcase_04 AC 42 ms
54,564 KB
testcase_05 AC 42 ms
54,376 KB
testcase_06 AC 42 ms
54,628 KB
testcase_07 AC 42 ms
55,232 KB
testcase_08 AC 42 ms
54,508 KB
testcase_09 AC 42 ms
55,112 KB
testcase_10 AC 42 ms
53,496 KB
testcase_11 AC 42 ms
53,972 KB
testcase_12 AC 46 ms
60,372 KB
testcase_13 AC 42 ms
54,808 KB
testcase_14 AC 47 ms
60,524 KB
testcase_15 AC 42 ms
54,924 KB
testcase_16 AC 41 ms
54,860 KB
testcase_17 AC 42 ms
53,616 KB
testcase_18 AC 42 ms
55,152 KB
testcase_19 AC 41 ms
53,700 KB
testcase_20 AC 41 ms
55,244 KB
testcase_21 AC 42 ms
53,808 KB
testcase_22 AC 42 ms
53,664 KB
testcase_23 AC 42 ms
54,136 KB
testcase_24 AC 41 ms
54,972 KB
testcase_25 AC 42 ms
53,636 KB
testcase_26 AC 41 ms
54,316 KB
testcase_27 AC 41 ms
54,264 KB
testcase_28 AC 41 ms
53,792 KB
testcase_29 AC 41 ms
54,248 KB
testcase_30 AC 42 ms
54,860 KB
testcase_31 AC 41 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

s = input()
dq = deque()
cww = deque()
mn = float("inf")
for c in s:
    for i in range(len(dq)):
        dq[i] += 1
    if c == "c":
        dq.append(1)
        cww.append(0)
    if c == "w":
        for i in range(len(dq)):
            cww[i] += 1
        while cww and cww[0] == 2:
            cww.popleft()
            mn = min(mn, dq.popleft())
print(mn if mn != float("inf") else -1)
0