結果

問題 No.1313 N言っちゃダメゲーム (4)
ユーザー shotoyooshotoyoo
提出日時 2020-12-10 01:18:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 629 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 76,876 KB
最終ジャッジ日時 2024-09-19 07:43:39
合計ジャッジ時間 2,962 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,940 KB
testcase_01 AC 36 ms
52,764 KB
testcase_02 AC 34 ms
52,144 KB
testcase_03 AC 34 ms
52,264 KB
testcase_04 AC 34 ms
52,140 KB
testcase_05 AC 33 ms
52,864 KB
testcase_06 AC 34 ms
52,328 KB
testcase_07 AC 34 ms
52,916 KB
testcase_08 AC 34 ms
53,668 KB
testcase_09 AC 34 ms
52,808 KB
testcase_10 AC 35 ms
53,412 KB
testcase_11 AC 36 ms
52,960 KB
testcase_12 AC 35 ms
53,008 KB
testcase_13 AC 48 ms
62,792 KB
testcase_14 AC 49 ms
64,156 KB
testcase_15 AC 45 ms
63,452 KB
testcase_16 AC 46 ms
65,168 KB
testcase_17 AC 48 ms
66,280 KB
testcase_18 AC 45 ms
61,988 KB
testcase_19 AC 45 ms
61,816 KB
testcase_20 AC 42 ms
60,640 KB
testcase_21 AC 45 ms
63,516 KB
testcase_22 AC 43 ms
61,648 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 WA -
testcase_33 AC 49 ms
66,868 KB
testcase_34 WA -
testcase_35 AC 46 ms
63,364 KB
testcase_36 AC 50 ms
65,072 KB
testcase_37 AC 51 ms
65,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")

    
n,k = list(map(int, input().split()))
s = input()
c = 1 # 0の個数
dp = [None]*(n)
dp[n-1] = 0
for i in range(n-2,0,-1):
    if s[i]=="x":
        v = 0
    else:
        if c>0:
            v = 1
        else:
            v = 0
    dp[i] = v
    if v==0:
        c += 1
    if i+k<n and dp[i+k]==0:
        c -= 1
index = []
for i in range(1,k+1):
        if dp[i]==0 and s[i-1]=="o":
            index.append(i)
if index:
    write("\n".join(map(str, index)))
else:
    print(0)
0