結果

問題 No.2240 WAC
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-03-10 21:59:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 84,952 KB
最終ジャッジ日時 2024-09-18 04:15:22
合計ジャッジ時間 3,333 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,740 KB
testcase_01 AC 37 ms
54,332 KB
testcase_02 AC 39 ms
53,164 KB
testcase_03 AC 38 ms
54,060 KB
testcase_04 AC 38 ms
54,188 KB
testcase_05 AC 37 ms
54,076 KB
testcase_06 AC 37 ms
54,124 KB
testcase_07 AC 37 ms
54,244 KB
testcase_08 AC 40 ms
54,332 KB
testcase_09 AC 35 ms
53,772 KB
testcase_10 AC 69 ms
84,952 KB
testcase_11 AC 62 ms
74,624 KB
testcase_12 AC 53 ms
69,376 KB
testcase_13 AC 40 ms
55,296 KB
testcase_14 AC 38 ms
54,272 KB
testcase_15 AC 39 ms
57,216 KB
testcase_16 AC 66 ms
76,800 KB
testcase_17 AC 39 ms
56,448 KB
testcase_18 AC 56 ms
69,632 KB
testcase_19 AC 54 ms
67,200 KB
testcase_20 AC 40 ms
57,472 KB
testcase_21 AC 59 ms
69,888 KB
testcase_22 AC 48 ms
65,792 KB
testcase_23 AC 47 ms
65,152 KB
testcase_24 AC 61 ms
69,248 KB
testcase_25 AC 72 ms
74,880 KB
testcase_26 AC 39 ms
55,040 KB
testcase_27 AC 37 ms
54,912 KB
testcase_28 AC 48 ms
65,408 KB
testcase_29 AC 45 ms
62,464 KB
testcase_30 AC 39 ms
55,936 KB
testcase_31 AC 39 ms
58,368 KB
testcase_32 AC 57 ms
67,584 KB
testcase_33 AC 39 ms
56,064 KB
testcase_34 AC 39 ms
56,832 KB
testcase_35 AC 36 ms
53,888 KB
testcase_36 AC 66 ms
75,904 KB
testcase_37 AC 41 ms
57,984 KB
testcase_38 AC 50 ms
65,280 KB
testcase_39 AC 57 ms
71,936 KB
testcase_40 AC 40 ms
56,448 KB
testcase_41 AC 50 ms
68,352 KB
testcase_42 AC 50 ms
68,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,m = map(int,input().split())
S = input()
le = len(S)
used = [0]*(le)
A = deque()
for i in range(le)[::-1]:
    # print(i,S[i],A)
    if S[i] == "W":
        if not A:
            print("No")
            exit()
        used[A.popleft()] = 1
    
    if S[i] == "A":
        A.append(i)

A = []
for i in range(le):
    # print(i,S[i],A)
    if S[i] == "C":
        if not A:
            print("No")
            exit()
        A.pop()
    if S[i] == "A" and used[i] == 0:
        A.append(i)
print("Yes")
0