結果

問題 No.1313 N言っちゃダメゲーム (4)
ユーザー sotanishysotanishy
提出日時 2020-12-13 23:01:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 81,740 KB
実行使用メモリ 66,688 KB
最終ジャッジ日時 2024-09-20 00:15:27
合計ジャッジ時間 2,979 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 35 ms
52,352 KB
testcase_04 WA -
testcase_05 AC 34 ms
51,968 KB
testcase_06 AC 34 ms
51,584 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 WA -
testcase_09 AC 36 ms
51,456 KB
testcase_10 AC 35 ms
51,968 KB
testcase_11 AC 38 ms
51,968 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 48 ms
62,208 KB
testcase_15 AC 46 ms
61,952 KB
testcase_16 AC 49 ms
62,848 KB
testcase_17 AC 49 ms
62,080 KB
testcase_18 AC 46 ms
61,824 KB
testcase_19 AC 46 ms
62,080 KB
testcase_20 AC 44 ms
59,904 KB
testcase_21 AC 46 ms
61,056 KB
testcase_22 AC 45 ms
60,672 KB
testcase_23 AC 54 ms
65,024 KB
testcase_24 AC 50 ms
62,848 KB
testcase_25 AC 54 ms
65,408 KB
testcase_26 AC 45 ms
59,904 KB
testcase_27 AC 51 ms
63,616 KB
testcase_28 AC 60 ms
66,688 KB
testcase_29 AC 58 ms
66,176 KB
testcase_30 AC 56 ms
66,048 KB
testcase_31 AC 58 ms
66,048 KB
testcase_32 AC 57 ms
65,792 KB
testcase_33 AC 52 ms
63,616 KB
testcase_34 AC 53 ms
64,128 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K = map(int, input().split())
S = 'o' + input().rstrip() + 'x'
win = [False] * (N + 1)
cnt = 0
for i in range(1, N)[::-1]:
    if S[i] == 'o' and not win[i + 1]:
        cnt += 1
    if i + K + 1 <= N and S[i + K] == 'o' and not win[i + K + 1]:
        cnt -= 1
    if cnt:
        win[i] = True
for i in range(1, K + 1):
    if not win[i + 1]:
        print(i)
        exit()
print(0)
0