結果

問題 No.2240 WAC
ユーザー vwxyzvwxyz
提出日時 2024-06-01 20:36:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 310 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 28,332 KB
最終ジャッジ日時 2024-12-22 09:53:52
合計ジャッジ時間 6,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 WA -
testcase_08 AC 33 ms
10,752 KB
testcase_09 AC 32 ms
10,496 KB
testcase_10 AC 216 ms
27,860 KB
testcase_11 AC 210 ms
28,332 KB
testcase_12 WA -
testcase_13 AC 90 ms
16,464 KB
testcase_14 WA -
testcase_15 AC 153 ms
22,176 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 69 ms
14,208 KB
testcase_19 WA -
testcase_20 AC 165 ms
23,072 KB
testcase_21 AC 108 ms
17,920 KB
testcase_22 AC 107 ms
18,668 KB
testcase_23 AC 91 ms
16,896 KB
testcase_24 AC 153 ms
22,052 KB
testcase_25 AC 145 ms
21,672 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 88 ms
16,316 KB
testcase_29 AC 49 ms
12,544 KB
testcase_30 AC 109 ms
18,384 KB
testcase_31 AC 197 ms
26,356 KB
testcase_32 AC 67 ms
13,696 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 154 ms
21,912 KB
testcase_37 AC 176 ms
24,844 KB
testcase_38 AC 90 ms
16,088 KB
testcase_39 AC 187 ms
25,856 KB
testcase_40 WA -
testcase_41 AC 140 ms
21,680 KB
testcase_42 AC 134 ms
21,252 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[N:])) and all(i<j for i,j in zip(A[:N],C)):
    ans="Yes"
else:
    ans="No"
print(ans)
0