結果

問題 No.2240 WAC
ユーザー ikomaikoma
提出日時 2023-03-11 01:13:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 97,532 KB
最終ジャッジ日時 2024-09-18 05:56:24
合計ジャッジ時間 4,200 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,444 KB
testcase_01 AC 35 ms
52,824 KB
testcase_02 AC 36 ms
52,964 KB
testcase_03 AC 35 ms
51,752 KB
testcase_04 AC 36 ms
53,844 KB
testcase_05 AC 36 ms
53,808 KB
testcase_06 AC 36 ms
52,820 KB
testcase_07 AC 36 ms
53,024 KB
testcase_08 AC 37 ms
52,456 KB
testcase_09 AC 39 ms
52,344 KB
testcase_10 AC 82 ms
97,264 KB
testcase_11 AC 84 ms
97,296 KB
testcase_12 AC 82 ms
97,532 KB
testcase_13 AC 60 ms
75,680 KB
testcase_14 AC 55 ms
69,392 KB
testcase_15 AC 85 ms
90,040 KB
testcase_16 AC 89 ms
92,624 KB
testcase_17 AC 79 ms
87,452 KB
testcase_18 AC 65 ms
74,840 KB
testcase_19 AC 60 ms
72,808 KB
testcase_20 AC 88 ms
91,168 KB
testcase_21 AC 70 ms
77,352 KB
testcase_22 AC 76 ms
85,204 KB
testcase_23 AC 66 ms
77,540 KB
testcase_24 AC 82 ms
90,332 KB
testcase_25 AC 82 ms
89,148 KB
testcase_26 AC 59 ms
72,496 KB
testcase_27 AC 56 ms
70,672 KB
testcase_28 AC 60 ms
74,676 KB
testcase_29 AC 55 ms
67,848 KB
testcase_30 AC 76 ms
85,288 KB
testcase_31 AC 95 ms
94,804 KB
testcase_32 AC 55 ms
71,392 KB
testcase_33 AC 85 ms
86,040 KB
testcase_34 AC 92 ms
88,512 KB
testcase_35 AC 54 ms
69,028 KB
testcase_36 AC 83 ms
90,048 KB
testcase_37 AC 91 ms
92,692 KB
testcase_38 AC 59 ms
74,924 KB
testcase_39 AC 101 ms
95,692 KB
testcase_40 AC 78 ms
85,432 KB
testcase_41 AC 81 ms
88,636 KB
testcase_42 AC 84 ms
88,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def solve():
    N,M=map(int,input().split())
    S=list(input().strip())

    ok=[0]*len(S)
    r=len(ok)
    for i in range(len(S)-1,-1,-1):
        s=S[i]
        if s=="W":
            while r>0:
                r-=1
                if S[r]=="A":
                    if i<r:
                        ok[i]=1
                        ok[r]=1
                    break
    l=-1
    for i,s in enumerate(S):
        if s=="A" and ok[i]==0:
            while l<len(ok)-1:
                l+=1
                if S[l]=="C":
                    if i<l:
                        ok[i]=1
                        ok[l]=1
                    break
    print("Yes" if sum(ok)==len(ok) else "No")

solve()
0