結果

問題 No.1313 N言っちゃダメゲーム (4)
ユーザー H3PO4H3PO4
提出日時 2020-12-12 09:30:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,184 KB
最終ジャッジ日時 2024-09-19 21:46:54
合計ジャッジ時間 4,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 53 ms
14,180 KB
testcase_14 AC 76 ms
14,180 KB
testcase_15 AC 166 ms
14,056 KB
testcase_16 AC 176 ms
14,052 KB
testcase_17 AC 190 ms
14,184 KB
testcase_18 AC 113 ms
12,800 KB
testcase_19 AC 117 ms
12,748 KB
testcase_20 AC 41 ms
11,008 KB
testcase_21 AC 99 ms
12,160 KB
testcase_22 AC 62 ms
11,776 KB
testcase_23 AC 91 ms
12,416 KB
testcase_24 AC 37 ms
11,008 KB
testcase_25 AC 97 ms
12,800 KB
testcase_26 AC 30 ms
10,624 KB
testcase_27 AC 85 ms
12,032 KB
testcase_28 AC 166 ms
14,056 KB
testcase_29 AC 159 ms
14,052 KB
testcase_30 AC 155 ms
14,184 KB
testcase_31 AC 161 ms
14,176 KB
testcase_32 AC 149 ms
14,052 KB
testcase_33 AC 130 ms
14,056 KB
testcase_34 AC 135 ms
14,180 KB
testcase_35 AC 55 ms
14,060 KB
testcase_36 AC 88 ms
14,176 KB
testcase_37 AC 74 ms
14,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
S = [True] + [s == 'o' for s in input()]

while not S[-1]:
    S.pop()
N = len(S)

lst = [None] * N
lst[-1] = False
false_ct = 1
for i in range(N - 2, -1, -1):
    if i + K + 1 < N:
        false_ct -= not lst[i + K + 1]

    if not S[i]:
        lst[i] = True
        continue

    lst[i] = bool(false_ct)
    false_ct += not bool(false_ct)

if lst[0]:
    for i in range(1, K + 1):
        if not lst[i]:
            print(i)
            exit()
else:
    print(0)
0