結果

問題 No.2240 WAC
ユーザー vwxyzvwxyz
提出日時 2024-06-01 20:38:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,332 KB
最終ジャッジ日時 2024-12-22 09:58:53
合計ジャッジ時間 6,092 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 202 ms
27,992 KB
testcase_11 AC 220 ms
28,332 KB
testcase_12 AC 199 ms
28,204 KB
testcase_13 AC 89 ms
16,488 KB
testcase_14 AC 55 ms
13,172 KB
testcase_15 AC 144 ms
21,788 KB
testcase_16 AC 173 ms
24,304 KB
testcase_17 AC 127 ms
19,960 KB
testcase_18 AC 64 ms
14,208 KB
testcase_19 AC 74 ms
15,488 KB
testcase_20 AC 158 ms
23,092 KB
testcase_21 AC 101 ms
17,920 KB
testcase_22 AC 110 ms
18,796 KB
testcase_23 AC 88 ms
16,768 KB
testcase_24 AC 144 ms
22,024 KB
testcase_25 AC 145 ms
21,820 KB
testcase_26 AC 83 ms
15,512 KB
testcase_27 AC 62 ms
13,952 KB
testcase_28 AC 83 ms
16,172 KB
testcase_29 AC 49 ms
12,544 KB
testcase_30 AC 107 ms
18,512 KB
testcase_31 AC 180 ms
25,588 KB
testcase_32 AC 63 ms
14,080 KB
testcase_33 AC 116 ms
19,436 KB
testcase_34 AC 139 ms
21,376 KB
testcase_35 AC 45 ms
12,160 KB
testcase_36 AC 151 ms
22,012 KB
testcase_37 AC 170 ms
24,848 KB
testcase_38 AC 88 ms
16,088 KB
testcase_39 AC 188 ms
26,236 KB
testcase_40 AC 113 ms
18,464 KB
testcase_41 AC 134 ms
21,548 KB
testcase_42 AC 141 ms
21,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
S=input()
W,A,C=[],[],[]
for i in range(2*N+2*M):
    if S[i]=="W":
        W.append(i)
    if S[i]=="A":
        A.append(i)
    if S[i]=="C":
        C.append(i)
if all(i<j for i,j in zip(W,A[M:])) and all(i<j for i,j in zip(A[:M],C)):
    ans="Yes"
else:
    ans="No"
print(ans)
0