結果

問題 No.2240 WAC
ユーザー lloyzlloyz
提出日時 2023-03-10 23:07:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 80,420 KB
最終ジャッジ日時 2024-09-18 05:16:37
合計ジャッジ時間 3,510 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,440 KB
testcase_01 AC 34 ms
53,964 KB
testcase_02 AC 34 ms
52,632 KB
testcase_03 AC 33 ms
52,888 KB
testcase_04 AC 34 ms
52,420 KB
testcase_05 WA -
testcase_06 AC 35 ms
52,204 KB
testcase_07 AC 37 ms
52,684 KB
testcase_08 AC 38 ms
53,536 KB
testcase_09 AC 38 ms
53,132 KB
testcase_10 AC 52 ms
80,420 KB
testcase_11 AC 52 ms
79,636 KB
testcase_12 AC 46 ms
79,088 KB
testcase_13 AC 39 ms
60,840 KB
testcase_14 AC 42 ms
63,400 KB
testcase_15 AC 41 ms
66,592 KB
testcase_16 WA -
testcase_17 AC 50 ms
70,924 KB
testcase_18 AC 42 ms
64,796 KB
testcase_19 WA -
testcase_20 AC 45 ms
67,680 KB
testcase_21 AC 49 ms
68,360 KB
testcase_22 AC 41 ms
62,056 KB
testcase_23 AC 40 ms
59,980 KB
testcase_24 AC 43 ms
65,928 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 44 ms
64,860 KB
testcase_28 AC 39 ms
58,616 KB
testcase_29 AC 36 ms
54,788 KB
testcase_30 AC 37 ms
62,116 KB
testcase_31 WA -
testcase_32 AC 47 ms
62,744 KB
testcase_33 AC 51 ms
71,128 KB
testcase_34 WA -
testcase_35 AC 43 ms
61,648 KB
testcase_36 WA -
testcase_37 AC 44 ms
69,436 KB
testcase_38 AC 40 ms
59,868 KB
testcase_39 AC 46 ms
71,804 KB
testcase_40 WA -
testcase_41 AC 42 ms
65,440 KB
testcase_42 AC 44 ms
65,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
S = list(input())

a_num = 0
for i in range(2 * (n + m)):
    if S[i] == 'A':
        a_num += 1
    elif S[i] == 'C':
        if a_num > 0:
            a_num -= 1
        else:
            print("No")
            exit()
    else:
        if a_num == n:
            print("No")
            exit()
print("Yes")
0