結果

問題 No.2240 WAC
ユーザー tktk_snsntktk_snsn
提出日時 2023-03-10 21:37:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,244 KB
最終ジャッジ日時 2024-09-18 03:50:35
合計ジャッジ時間 5,986 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 230 ms
29,084 KB
testcase_11 AC 228 ms
29,244 KB
testcase_12 AC 222 ms
29,212 KB
testcase_13 AC 95 ms
16,896 KB
testcase_14 AC 60 ms
13,184 KB
testcase_15 AC 152 ms
22,864 KB
testcase_16 AC 189 ms
24,548 KB
testcase_17 AC 142 ms
20,336 KB
testcase_18 AC 71 ms
14,336 KB
testcase_19 AC 85 ms
15,348 KB
testcase_20 AC 168 ms
23,412 KB
testcase_21 AC 109 ms
17,792 KB
testcase_22 AC 107 ms
18,816 KB
testcase_23 AC 90 ms
16,896 KB
testcase_24 AC 155 ms
22,520 KB
testcase_25 AC 159 ms
22,012 KB
testcase_26 AC 84 ms
15,556 KB
testcase_27 AC 71 ms
14,208 KB
testcase_28 AC 88 ms
16,256 KB
testcase_29 AC 48 ms
12,544 KB
testcase_30 AC 115 ms
18,616 KB
testcase_31 AC 207 ms
26,368 KB
testcase_32 AC 67 ms
13,824 KB
testcase_33 AC 131 ms
19,424 KB
testcase_34 AC 152 ms
21,760 KB
testcase_35 AC 48 ms
12,160 KB
testcase_36 AC 168 ms
22,688 KB
testcase_37 AC 183 ms
25,184 KB
testcase_38 AC 91 ms
16,264 KB
testcase_39 AC 202 ms
26,620 KB
testcase_40 AC 123 ms
18,532 KB
testcase_41 AC 139 ms
21,356 KB
testcase_42 AC 140 ms
21,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
S = input()

pos = [[] for _ in range(3)]
for i, s in enumerate(S):
    pos["WAC".index(s)].append(i)


ok = True

# Wのペア、Aの後ろのほうを貪欲に
A = pos[1][-N:]
for i in range(N):
    if pos[0][i] > A[i]:
        ok = False
        break

# Cのペア、Aの前のほうを貪欲に
A = pos[1][:M]
for i in range(M):
    if A[i] > pos[2][i]:
        ok = False
        break

if ok:
    print("Yes")
else:
    print("No")
0