結果

問題 No.1313 N言っちゃダメゲーム (4)
ユーザー rlangevinrlangevin
提出日時 2023-10-01 00:11:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 544 bytes
コンパイル時間 885 ms
コンパイル使用メモリ 81,704 KB
実行使用メモリ 86,708 KB
最終ジャッジ日時 2024-07-23 17:50:12
合計ジャッジ時間 4,205 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,248 KB
testcase_01 AC 41 ms
54,772 KB
testcase_02 AC 40 ms
54,584 KB
testcase_03 AC 40 ms
53,784 KB
testcase_04 AC 41 ms
54,376 KB
testcase_05 AC 40 ms
53,664 KB
testcase_06 AC 40 ms
55,416 KB
testcase_07 AC 40 ms
53,504 KB
testcase_08 AC 40 ms
53,612 KB
testcase_09 AC 40 ms
53,664 KB
testcase_10 AC 42 ms
54,088 KB
testcase_11 AC 43 ms
54,716 KB
testcase_12 AC 42 ms
54,924 KB
testcase_13 AC 58 ms
77,296 KB
testcase_14 AC 59 ms
77,496 KB
testcase_15 AC 63 ms
81,936 KB
testcase_16 AC 77 ms
86,708 KB
testcase_17 AC 72 ms
84,036 KB
testcase_18 AC 64 ms
78,644 KB
testcase_19 AC 63 ms
77,556 KB
testcase_20 AC 52 ms
65,672 KB
testcase_21 AC 63 ms
73,092 KB
testcase_22 AC 56 ms
69,984 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 80 ms
85,700 KB
testcase_33 WA -
testcase_34 AC 58 ms
75,976 KB
testcase_35 AC 58 ms
76,688 KB
testcase_36 AC 59 ms
77,456 KB
testcase_37 AC 59 ms
76,756 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 S[i] == 0:
        continue
    if i + K + 1 <= N and S[i]:
        val -= Q.popleft()
    if val:
        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