結果

問題 No.1313 N言っちゃダメゲーム (4)
ユーザー Kiri8128Kiri8128
提出日時 2020-12-10 00:16:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 210 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 75,940 KB
最終ジャッジ日時 2024-09-19 06:44:08
合計ジャッジ時間 2,877 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 34 ms
52,092 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 36 ms
52,096 KB
testcase_06 WA -
testcase_07 AC 34 ms
51,968 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 35 ms
51,968 KB
testcase_10 WA -
testcase_11 AC 35 ms
51,968 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 50 ms
73,472 KB
testcase_16 AC 50 ms
73,856 KB
testcase_17 AC 51 ms
74,112 KB
testcase_18 AC 46 ms
68,224 KB
testcase_19 AC 45 ms
67,456 KB
testcase_20 AC 40 ms
59,776 KB
testcase_21 AC 44 ms
65,280 KB
testcase_22 AC 43 ms
62,592 KB
testcase_23 WA -
testcase_24 AC 41 ms
60,288 KB
testcase_25 AC 50 ms
68,480 KB
testcase_26 AC 40 ms
59,008 KB
testcase_27 AC 46 ms
65,792 KB
testcase_28 WA -
testcase_29 AC 53 ms
74,496 KB
testcase_30 WA -
testcase_31 AC 52 ms
74,108 KB
testcase_32 AC 52 ms
74,368 KB
testcase_33 AC 53 ms
75,264 KB
testcase_34 AC 53 ms
75,392 KB
testcase_35 AC 50 ms
73,984 KB
testcase_36 AC 53 ms
75,264 KB
testcase_37 AC 53 ms
75,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
N -= 1
S = [0] + [1 if a == "x" else 0 for a in input()]
X = [0] * N + [1]
l = N
for i in range(N)[::-1]:
    if l - i > K and S[i] == 0:
        X[i] = 1
        l = i
print(l)
0