結果

問題 No.2240 WAC
ユーザー H20H20
提出日時 2023-03-10 23:11:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 108,616 KB
最終ジャッジ日時 2024-09-18 05:21:13
合計ジャッジ時間 4,436 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,400 KB
testcase_01 AC 41 ms
54,976 KB
testcase_02 AC 38 ms
54,308 KB
testcase_03 AC 36 ms
53,416 KB
testcase_04 AC 38 ms
53,424 KB
testcase_05 AC 41 ms
53,556 KB
testcase_06 AC 37 ms
54,640 KB
testcase_07 AC 38 ms
54,484 KB
testcase_08 AC 38 ms
54,304 KB
testcase_09 AC 38 ms
54,692 KB
testcase_10 AC 99 ms
107,076 KB
testcase_11 AC 98 ms
108,528 KB
testcase_12 AC 96 ms
108,616 KB
testcase_13 AC 64 ms
86,032 KB
testcase_14 AC 50 ms
70,688 KB
testcase_15 AC 81 ms
95,448 KB
testcase_16 AC 92 ms
98,132 KB
testcase_17 AC 79 ms
91,380 KB
testcase_18 AC 60 ms
75,772 KB
testcase_19 AC 61 ms
78,128 KB
testcase_20 AC 85 ms
97,100 KB
testcase_21 AC 74 ms
88,044 KB
testcase_22 AC 70 ms
88,704 KB
testcase_23 AC 71 ms
86,968 KB
testcase_24 AC 82 ms
95,164 KB
testcase_25 AC 83 ms
94,012 KB
testcase_26 AC 54 ms
76,748 KB
testcase_27 AC 55 ms
73,016 KB
testcase_28 AC 70 ms
85,428 KB
testcase_29 AC 52 ms
68,316 KB
testcase_30 AC 69 ms
87,988 KB
testcase_31 AC 85 ms
101,468 KB
testcase_32 AC 56 ms
75,740 KB
testcase_33 AC 71 ms
89,132 KB
testcase_34 AC 76 ms
93,056 KB
testcase_35 AC 46 ms
66,444 KB
testcase_36 AC 85 ms
95,308 KB
testcase_37 AC 83 ms
99,220 KB
testcase_38 AC 69 ms
86,496 KB
testcase_39 AC 94 ms
101,772 KB
testcase_40 AC 73 ms
88,240 KB
testcase_41 AC 81 ms
93,076 KB
testcase_42 AC 79 ms
92,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

N,M = map(int, input().split())
S = list(input())
A = collections.deque()
W = []
C = []
for i,s in enumerate(S):
    if s=='A':
        A.append(i)
    if s=='W':
        W.append(i)
    if s=='C':
        C.append(i)

for w in W[::-1]:
    if w<A[-1]:
        A.pop()
    else:
        print('No')
        exit()

for c in C:
    if A[0]<c:
        A.popleft()
    else:
        print('No')
        exit()
print('Yes')
0