結果

問題 No.2240 WAC
ユーザー vwxyzvwxyz
提出日時 2024-06-01 20:36:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 310 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,488 KB
最終ジャッジ日時 2024-06-01 20:36:47
合計ジャッジ時間 6,453 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 WA -
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 182 ms
27,860 KB
testcase_11 AC 184 ms
28,488 KB
testcase_12 WA -
testcase_13 AC 84 ms
16,592 KB
testcase_14 WA -
testcase_15 AC 130 ms
22,304 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 55 ms
14,336 KB
testcase_19 WA -
testcase_20 AC 151 ms
23,152 KB
testcase_21 AC 85 ms
18,176 KB
testcase_22 AC 89 ms
18,792 KB
testcase_23 AC 74 ms
16,896 KB
testcase_24 AC 132 ms
22,180 KB
testcase_25 AC 125 ms
21,796 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 71 ms
16,188 KB
testcase_29 AC 42 ms
12,800 KB
testcase_30 AC 98 ms
18,512 KB
testcase_31 AC 184 ms
26,480 KB
testcase_32 AC 58 ms
13,952 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 138 ms
22,164 KB
testcase_37 AC 159 ms
24,892 KB
testcase_38 AC 72 ms
16,088 KB
testcase_39 AC 163 ms
26,240 KB
testcase_40 WA -
testcase_41 AC 116 ms
21,672 KB
testcase_42 AC 113 ms
21,508 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