結果

問題 No.1313 N言っちゃダメゲーム (4)
ユーザー tamatotamato
提出日時 2020-12-11 18:50:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 62,080 KB
最終ジャッジ日時 2024-09-19 21:26:18
合計ジャッジ時間 2,726 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,260 KB
testcase_01 AC 36 ms
52,560 KB
testcase_02 AC 36 ms
52,384 KB
testcase_03 AC 35 ms
52,080 KB
testcase_04 AC 34 ms
53,064 KB
testcase_05 AC 34 ms
53,276 KB
testcase_06 AC 35 ms
53,020 KB
testcase_07 AC 37 ms
52,612 KB
testcase_08 AC 35 ms
52,688 KB
testcase_09 AC 36 ms
52,924 KB
testcase_10 AC 36 ms
52,716 KB
testcase_11 AC 36 ms
52,200 KB
testcase_12 AC 36 ms
52,368 KB
testcase_13 AC 40 ms
59,636 KB
testcase_14 AC 40 ms
59,096 KB
testcase_15 AC 37 ms
53,952 KB
testcase_16 AC 37 ms
55,016 KB
testcase_17 AC 42 ms
62,080 KB
testcase_18 AC 36 ms
54,060 KB
testcase_19 AC 36 ms
53,764 KB
testcase_20 AC 37 ms
52,600 KB
testcase_21 AC 36 ms
53,732 KB
testcase_22 AC 37 ms
52,576 KB
testcase_23 AC 36 ms
53,708 KB
testcase_24 AC 36 ms
52,688 KB
testcase_25 AC 37 ms
53,268 KB
testcase_26 AC 35 ms
52,468 KB
testcase_27 AC 38 ms
53,264 KB
testcase_28 AC 38 ms
54,884 KB
testcase_29 AC 36 ms
54,272 KB
testcase_30 AC 37 ms
53,396 KB
testcase_31 AC 37 ms
55,076 KB
testcase_32 AC 37 ms
55,052 KB
testcase_33 AC 41 ms
59,560 KB
testcase_34 AC 44 ms
59,632 KB
testcase_35 AC 45 ms
59,028 KB
testcase_36 AC 44 ms
60,512 KB
testcase_37 AC 41 ms
60,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N, K = map(int, input().split())
    S = input().rstrip('\n')

    i = N-1
    while i > 0:
        if S[i-1] == "x":
            i -= 1
        else:
            break
    flg = 1
    while i > 0:
        if flg == 1:
            i -= K+1
            flg = 0
        else:
            if S[i-1] == "o":
                flg = 1
            else:
                i -= 1
    if i == 0:
        print(i)
    else:
        print(i + K + 1)


if __name__ == '__main__':
    main()
0