結果

問題 No.2240 WAC
ユーザー ikomaikoma
提出日時 2023-03-11 01:08:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 711 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 97,820 KB
最終ジャッジ日時 2024-09-18 05:56:19
合計ジャッジ時間 4,442 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,660 KB
testcase_01 AC 35 ms
53,420 KB
testcase_02 AC 35 ms
52,804 KB
testcase_03 AC 35 ms
52,484 KB
testcase_04 AC 34 ms
52,332 KB
testcase_05 AC 35 ms
52,692 KB
testcase_06 AC 35 ms
51,944 KB
testcase_07 AC 35 ms
53,260 KB
testcase_08 AC 38 ms
52,128 KB
testcase_09 AC 36 ms
53,056 KB
testcase_10 AC 84 ms
97,820 KB
testcase_11 WA -
testcase_12 AC 85 ms
97,696 KB
testcase_13 AC 74 ms
82,380 KB
testcase_14 AC 55 ms
70,100 KB
testcase_15 AC 91 ms
90,444 KB
testcase_16 WA -
testcase_17 AC 88 ms
86,724 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 87 ms
90,748 KB
testcase_21 WA -
testcase_22 AC 76 ms
85,024 KB
testcase_23 AC 79 ms
83,000 KB
testcase_24 AC 93 ms
89,996 KB
testcase_25 WA -
testcase_26 AC 79 ms
81,024 KB
testcase_27 AC 67 ms
75,096 KB
testcase_28 AC 68 ms
76,172 KB
testcase_29 AC 58 ms
70,316 KB
testcase_30 AC 79 ms
84,856 KB
testcase_31 AC 93 ms
94,244 KB
testcase_32 WA -
testcase_33 AC 76 ms
86,300 KB
testcase_34 AC 89 ms
88,556 KB
testcase_35 AC 59 ms
70,320 KB
testcase_36 WA -
testcase_37 AC 95 ms
93,128 KB
testcase_38 AC 62 ms
76,380 KB
testcase_39 AC 98 ms
95,536 KB
testcase_40 AC 84 ms
85,476 KB
testcase_41 AC 86 ms
88,576 KB
testcase_42 AC 85 ms
88,540 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,s in enumerate(S):
        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