結果

問題 No.2240 WAC
ユーザー ninja-kidninja-kid
提出日時 2023-03-11 07:55:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 857 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 93,824 KB
最終ジャッジ日時 2024-09-18 06:11:42
合計ジャッジ時間 4,714 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,992 KB
testcase_01 AC 40 ms
53,760 KB
testcase_02 AC 40 ms
53,760 KB
testcase_03 AC 46 ms
54,016 KB
testcase_04 AC 40 ms
53,376 KB
testcase_05 AC 42 ms
54,016 KB
testcase_06 AC 45 ms
53,504 KB
testcase_07 AC 42 ms
53,632 KB
testcase_08 AC 42 ms
52,992 KB
testcase_09 AC 41 ms
53,120 KB
testcase_10 AC 83 ms
91,140 KB
testcase_11 AC 86 ms
93,824 KB
testcase_12 AC 85 ms
93,824 KB
testcase_13 AC 56 ms
70,272 KB
testcase_14 AC 56 ms
68,096 KB
testcase_15 AC 64 ms
78,464 KB
testcase_16 AC 80 ms
87,296 KB
testcase_17 AC 69 ms
78,720 KB
testcase_18 AC 61 ms
70,144 KB
testcase_19 AC 60 ms
70,784 KB
testcase_20 AC 66 ms
78,244 KB
testcase_21 AC 62 ms
75,520 KB
testcase_22 AC 59 ms
72,064 KB
testcase_23 AC 58 ms
70,312 KB
testcase_24 AC 66 ms
76,800 KB
testcase_25 AC 71 ms
80,640 KB
testcase_26 AC 60 ms
71,356 KB
testcase_27 AC 57 ms
69,120 KB
testcase_28 AC 57 ms
69,248 KB
testcase_29 AC 55 ms
64,256 KB
testcase_30 AC 61 ms
72,064 KB
testcase_31 AC 92 ms
91,520 KB
testcase_32 AC 60 ms
68,608 KB
testcase_33 AC 84 ms
78,208 KB
testcase_34 AC 74 ms
83,072 KB
testcase_35 AC 55 ms
65,408 KB
testcase_36 AC 76 ms
85,504 KB
testcase_37 AC 69 ms
79,744 KB
testcase_38 AC 57 ms
68,864 KB
testcase_39 AC 70 ms
84,480 KB
testcase_40 AC 68 ms
76,032 KB
testcase_41 AC 63 ms
75,520 KB
testcase_42 AC 64 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
from collections import deque


dpos4 = ((1, 0), (0, 1), (-1, 0), (0, -1))
dpos8 = ((0, -1), (1, -1), (1, 0), (1, 1), (0, 1), (-1, 1), (-1, 0), (-1, -1))
mod1 = 10**9 + 7
mod2 = 998244353
inf = 1 << 60


def main():
    N, M = map(int, input().split())

    W = []
    C = []
    A = deque()
    S = input()
    for i in range(len(S)):
        if S[i] == "W":
            W.append(i)
        elif S[i] == "C":
            C.append(i)
        else:
            A.append(i)

    def solve():
        for c in C:
            if not A or A[0] >= c:
                return False
            A.popleft()
        for w in W:
            if not A or A[0] <= w:
                return False
            A.popleft()
        return True

    if solve():
        print("Yes")
    else:
        print("No")


if __name__ == "__main__":
    main()
0