結果

問題 No.2240 WAC
ユーザー lloyzlloyz
提出日時 2023-03-10 23:23:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 643 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 95,616 KB
最終ジャッジ日時 2024-09-18 05:38:52
合計ジャッジ時間 7,215 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,248 KB
testcase_01 AC 42 ms
52,992 KB
testcase_02 AC 42 ms
53,120 KB
testcase_03 AC 42 ms
53,120 KB
testcase_04 AC 45 ms
53,504 KB
testcase_05 AC 42 ms
53,376 KB
testcase_06 AC 43 ms
53,504 KB
testcase_07 AC 42 ms
52,992 KB
testcase_08 AC 42 ms
53,504 KB
testcase_09 AC 42 ms
53,588 KB
testcase_10 AC 595 ms
95,104 KB
testcase_11 AC 643 ms
94,976 KB
testcase_12 AC 86 ms
95,616 KB
testcase_13 AC 45 ms
59,904 KB
testcase_14 AC 67 ms
68,224 KB
testcase_15 AC 50 ms
67,840 KB
testcase_16 AC 214 ms
91,008 KB
testcase_17 AC 163 ms
88,832 KB
testcase_18 AC 72 ms
69,888 KB
testcase_19 AC 57 ms
69,504 KB
testcase_20 AC 51 ms
68,736 KB
testcase_21 AC 298 ms
87,040 KB
testcase_22 AC 47 ms
62,720 KB
testcase_23 AC 46 ms
60,544 KB
testcase_24 AC 50 ms
67,712 KB
testcase_25 AC 287 ms
89,856 KB
testcase_26 AC 190 ms
73,216 KB
testcase_27 AC 70 ms
69,888 KB
testcase_28 AC 46 ms
60,160 KB
testcase_29 AC 44 ms
55,936 KB
testcase_30 AC 48 ms
62,848 KB
testcase_31 AC 445 ms
92,416 KB
testcase_32 AC 87 ms
68,864 KB
testcase_33 AC 163 ms
89,088 KB
testcase_34 AC 434 ms
90,112 KB
testcase_35 AC 59 ms
65,152 KB
testcase_36 AC 370 ms
89,728 KB
testcase_37 AC 53 ms
70,528 KB
testcase_38 AC 47 ms
60,032 KB
testcase_39 AC 53 ms
72,448 KB
testcase_40 AC 130 ms
87,808 KB
testcase_41 AC 51 ms
65,920 KB
testcase_42 AC 50 ms
65,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

A = deque()
W = deque()
for i in range(2 * (n + m)):
    if S[i] == 'A':
        A.append(i)
    elif S[i] == 'C':
        if len(A) > 0:
            A.popleft()
        else:
            print("No")
            exit()
    else:
        W.append(i)

for i in range(n):
    if A[i] < W[i]:
        print("No")
        exit()
print("Yes")
0