結果

問題 No.1313 N言っちゃダメゲーム (4)
ユーザー rlangevinrlangevin
提出日時 2023-10-01 00:15:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,960 KB
最終ジャッジ日時 2024-07-23 17:52:36
合計ジャッジ時間 4,088 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 42 ms
54,144 KB
testcase_04 AC 42 ms
53,376 KB
testcase_05 AC 42 ms
54,016 KB
testcase_06 AC 41 ms
53,632 KB
testcase_07 AC 41 ms
53,888 KB
testcase_08 AC 40 ms
53,632 KB
testcase_09 AC 42 ms
53,632 KB
testcase_10 AC 41 ms
53,632 KB
testcase_11 AC 41 ms
53,376 KB
testcase_12 AC 41 ms
53,632 KB
testcase_13 AC 62 ms
82,176 KB
testcase_14 AC 77 ms
88,960 KB
testcase_15 AC 62 ms
81,664 KB
testcase_16 AC 75 ms
86,784 KB
testcase_17 AC 71 ms
84,096 KB
testcase_18 AC 63 ms
76,928 KB
testcase_19 AC 62 ms
75,776 KB
testcase_20 AC 54 ms
64,640 KB
testcase_21 AC 61 ms
72,576 KB
testcase_22 AC 56 ms
68,736 KB
testcase_23 AC 64 ms
75,136 KB
testcase_24 AC 54 ms
65,408 KB
testcase_25 AC 65 ms
77,312 KB
testcase_26 AC 51 ms
63,360 KB
testcase_27 AC 60 ms
72,320 KB
testcase_28 AC 75 ms
84,736 KB
testcase_29 AC 76 ms
85,120 KB
testcase_30 AC 78 ms
86,972 KB
testcase_31 AC 76 ms
84,976 KB
testcase_32 AC 79 ms
87,296 KB
testcase_33 AC 80 ms
84,736 KB
testcase_34 AC 79 ms
84,480 KB
testcase_35 AC 79 ms
88,320 KB
testcase_36 AC 83 ms
85,760 KB
testcase_37 AC 84 ms
86,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N, K = map(int, input().split())
S = [1] + [int(s == "o") for s in input()] + [0]
ans = [-1] * (N + 1)
ans[-1] = 0
val = 0
Q = deque([0])
for i in range(N - 1, 0, -1):
    if i + K + 1 <= N:
        val -= Q.popleft()
    if val or S[i] == 0:
        ans[i] = 0
    else:
        ans[i] = 1
    val += ans[i]
    Q.append(ans[i])
    
ans2 = []
for i in range(1, K + 1):
    if ans[i] == 1:
        ans2.append(i)
        
if ans2:
    for a in ans2:
        print(a)
else:
    print(0)
0