結果

問題 No.2240 WAC
ユーザー neterukunneterukun
提出日時 2023-03-10 21:48:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 123,668 KB
最終ジャッジ日時 2024-09-18 04:04:28
合計ジャッジ時間 4,443 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,200 KB
testcase_01 AC 38 ms
52,592 KB
testcase_02 AC 39 ms
52,796 KB
testcase_03 AC 40 ms
52,424 KB
testcase_04 AC 37 ms
52,816 KB
testcase_05 WA -
testcase_06 AC 38 ms
52,112 KB
testcase_07 AC 39 ms
52,204 KB
testcase_08 AC 38 ms
52,428 KB
testcase_09 AC 38 ms
52,572 KB
testcase_10 AC 93 ms
93,052 KB
testcase_11 AC 75 ms
89,680 KB
testcase_12 AC 128 ms
123,668 KB
testcase_13 AC 75 ms
86,156 KB
testcase_14 AC 54 ms
73,212 KB
testcase_15 AC 85 ms
90,928 KB
testcase_16 WA -
testcase_17 AC 82 ms
91,016 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 93 ms
94,864 KB
testcase_21 WA -
testcase_22 AC 60 ms
76,560 KB
testcase_23 AC 67 ms
82,192 KB
testcase_24 AC 86 ms
92,020 KB
testcase_25 WA -
testcase_26 AC 62 ms
81,140 KB
testcase_27 AC 57 ms
75,388 KB
testcase_28 AC 61 ms
80,948 KB
testcase_29 AC 55 ms
68,204 KB
testcase_30 AC 75 ms
85,988 KB
testcase_31 AC 96 ms
100,328 KB
testcase_32 WA -
testcase_33 AC 83 ms
93,068 KB
testcase_34 AC 86 ms
95,344 KB
testcase_35 AC 54 ms
68,088 KB
testcase_36 WA -
testcase_37 AC 97 ms
98,228 KB
testcase_38 AC 70 ms
86,712 KB
testcase_39 AC 97 ms
100,140 KB
testcase_40 AC 79 ms
90,920 KB
testcase_41 AC 77 ms
86,608 KB
testcase_42 AC 77 ms
85,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
s = input()


stack = []
for char in s:
    if char == "C" and stack and stack[-1] == "A":
        stack.pop()
    else:
        stack.append(char)

stack2 = []
for char in stack:
    if char == "A" and stack2 and stack2[-1] == "W":
        stack2.pop()
    else:
        stack2.append(char)

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