結果

問題 No.2240 WAC
ユーザー ニックネームニックネーム
提出日時 2023-03-10 21:37:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,004 KB
最終ジャッジ日時 2024-09-18 03:51:04
合計ジャッジ時間 4,591 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 163 ms
14,872 KB
testcase_11 AC 159 ms
15,004 KB
testcase_12 AC 105 ms
15,004 KB
testcase_13 AC 67 ms
12,032 KB
testcase_14 AC 43 ms
11,520 KB
testcase_15 AC 95 ms
13,216 KB
testcase_16 AC 143 ms
13,780 KB
testcase_17 AC 89 ms
12,784 KB
testcase_18 AC 53 ms
11,520 KB
testcase_19 AC 61 ms
11,520 KB
testcase_20 AC 107 ms
13,168 KB
testcase_21 AC 84 ms
12,288 KB
testcase_22 AC 77 ms
12,652 KB
testcase_23 AC 61 ms
11,904 KB
testcase_24 AC 103 ms
13,580 KB
testcase_25 AC 122 ms
13,180 KB
testcase_26 AC 61 ms
11,904 KB
testcase_27 AC 51 ms
11,520 KB
testcase_28 AC 71 ms
11,904 KB
testcase_29 AC 36 ms
11,136 KB
testcase_30 AC 77 ms
12,320 KB
testcase_31 AC 129 ms
13,700 KB
testcase_32 AC 58 ms
11,648 KB
testcase_33 AC 99 ms
12,640 KB
testcase_34 AC 110 ms
12,928 KB
testcase_35 AC 35 ms
11,008 KB
testcase_36 AC 121 ms
13,192 KB
testcase_37 AC 119 ms
14,316 KB
testcase_38 AC 68 ms
11,776 KB
testcase_39 AC 136 ms
14,340 KB
testcase_40 AC 90 ms
12,272 KB
testcase_41 AC 91 ms
13,292 KB
testcase_42 AC 84 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
wa = []; ac = []; i = j = 0
for v in input():
    if v=="W": wa.append(v)
    elif v=="C": ac.append(v)
    elif i<m: ac.append(v); i += 1
    else: wa.append(v); i += 1
for v in wa:
    if v=="W": j += 1
    else: j -= 1
    if j<0: exit(print("No"))
for v in ac:
    if v=="A": j += 1
    else: j -= 1
    if j<0: exit(print("No"))
print("Yes")
0