結果

問題 No.2240 WAC
ユーザー roarisroaris
提出日時 2023-03-10 21:34:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 74,752 KB
最終ジャッジ日時 2024-09-18 03:46:43
合計ジャッジ時間 3,745 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,632 KB
testcase_01 AC 43 ms
52,992 KB
testcase_02 AC 47 ms
53,888 KB
testcase_03 AC 43 ms
53,504 KB
testcase_04 AC 43 ms
53,504 KB
testcase_05 AC 43 ms
53,504 KB
testcase_06 AC 42 ms
53,632 KB
testcase_07 AC 42 ms
53,504 KB
testcase_08 AC 41 ms
53,504 KB
testcase_09 AC 42 ms
53,504 KB
testcase_10 AC 74 ms
74,752 KB
testcase_11 AC 70 ms
72,704 KB
testcase_12 AC 65 ms
72,960 KB
testcase_13 AC 44 ms
55,424 KB
testcase_14 AC 58 ms
66,432 KB
testcase_15 AC 45 ms
56,960 KB
testcase_16 AC 75 ms
72,448 KB
testcase_17 AC 69 ms
70,272 KB
testcase_18 AC 62 ms
67,200 KB
testcase_19 AC 61 ms
66,432 KB
testcase_20 AC 47 ms
57,728 KB
testcase_21 AC 65 ms
68,224 KB
testcase_22 AC 46 ms
56,192 KB
testcase_23 AC 45 ms
55,424 KB
testcase_24 AC 47 ms
56,832 KB
testcase_25 AC 70 ms
70,912 KB
testcase_26 AC 58 ms
66,304 KB
testcase_27 AC 59 ms
66,816 KB
testcase_28 AC 44 ms
55,680 KB
testcase_29 AC 43 ms
53,760 KB
testcase_30 AC 45 ms
56,192 KB
testcase_31 AC 77 ms
73,472 KB
testcase_32 AC 60 ms
65,792 KB
testcase_33 AC 69 ms
69,888 KB
testcase_34 AC 69 ms
70,272 KB
testcase_35 AC 57 ms
64,512 KB
testcase_36 AC 74 ms
72,192 KB
testcase_37 AC 50 ms
57,600 KB
testcase_38 AC 44 ms
55,168 KB
testcase_39 AC 49 ms
58,112 KB
testcase_40 AC 67 ms
69,376 KB
testcase_41 AC 47 ms
56,832 KB
testcase_42 AC 46 ms
56,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, M = map(int, input().split())
S = input()[:-1]
q = deque([])
ban = [False]*len(S)

for i in range(len(S)):
    if S[i]=='C':
        if len(q)==0:
            exit(print('No'))
        else:
            ban[q.popleft()] = True
    elif S[i]=='A':
        q.append(i)

W = 0

for i in range(len(S)):
    if ban[i]:
        continue
    
    if S[i]=='W':
        W += 1
    elif S[i]=='A':
        W -= 1
        
        if W<0:
            exit(print('No'))

print('Yes')
0