結果

問題 No.2240 WAC
ユーザー VvyLwVvyLw
提出日時 2023-03-11 13:22:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 1,014 ms
コンパイル使用メモリ 81,620 KB
実行使用メモリ 94,320 KB
最終ジャッジ日時 2024-09-18 06:20:25
合計ジャッジ時間 4,045 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,012 KB
testcase_01 AC 39 ms
52,856 KB
testcase_02 AC 38 ms
51,580 KB
testcase_03 AC 39 ms
51,656 KB
testcase_04 AC 38 ms
52,824 KB
testcase_05 AC 38 ms
53,372 KB
testcase_06 AC 38 ms
52,488 KB
testcase_07 AC 39 ms
52,236 KB
testcase_08 AC 39 ms
52,488 KB
testcase_09 AC 39 ms
53,788 KB
testcase_10 AC 80 ms
90,988 KB
testcase_11 AC 79 ms
91,008 KB
testcase_12 AC 83 ms
94,320 KB
testcase_13 AC 62 ms
80,012 KB
testcase_14 AC 54 ms
69,380 KB
testcase_15 AC 73 ms
86,064 KB
testcase_16 AC 76 ms
87,816 KB
testcase_17 AC 71 ms
83,812 KB
testcase_18 AC 54 ms
72,208 KB
testcase_19 AC 58 ms
75,928 KB
testcase_20 AC 74 ms
86,440 KB
testcase_21 AC 63 ms
83,236 KB
testcase_22 AC 69 ms
85,980 KB
testcase_23 AC 61 ms
80,568 KB
testcase_24 AC 74 ms
85,764 KB
testcase_25 AC 71 ms
83,848 KB
testcase_26 AC 58 ms
76,844 KB
testcase_27 AC 55 ms
72,224 KB
testcase_28 AC 60 ms
78,672 KB
testcase_29 AC 52 ms
67,428 KB
testcase_30 AC 68 ms
84,196 KB
testcase_31 AC 81 ms
92,184 KB
testcase_32 AC 54 ms
72,420 KB
testcase_33 AC 69 ms
84,776 KB
testcase_34 AC 71 ms
84,540 KB
testcase_35 AC 52 ms
66,492 KB
testcase_36 AC 74 ms
85,276 KB
testcase_37 AC 82 ms
89,848 KB
testcase_38 AC 61 ms
79,752 KB
testcase_39 AC 82 ms
91,940 KB
testcase_40 AC 69 ms
84,132 KB
testcase_41 AC 73 ms
84,608 KB
testcase_42 AC 71 ms
84,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
s=input()
w=[]
a=[]
c=[]
for i,j in enumerate(s):
    if j=='W': w.append(i)
    elif j=='A': a.append(i)
    else : c.append(i)

ok=1
for i in range(m):
    ok&=(a[i]<c[i])
for i in range(n):
    ok&=(w[i]<a[i+m])

def Yes(ok):
    if ok: return "Yes"
    else: return "No"

ans=Yes(ok)
print(ans)
0