結果

問題 No.2240 WAC
ユーザー hir355hir355
提出日時 2023-03-10 21:32:16
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 373 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 99,072 KB
最終ジャッジ日時 2024-09-18 03:44:37
合計ジャッジ時間 4,121 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
51,200 KB
testcase_05 AC 38 ms
51,328 KB
testcase_06 RE -
testcase_07 WA -
testcase_08 AC 38 ms
51,712 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 73 ms
91,648 KB
testcase_11 AC 73 ms
90,880 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 65 ms
81,920 KB
testcase_16 WA -
testcase_17 RE -
testcase_18 RE -
testcase_19 WA -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 57 ms
72,448 KB
testcase_23 AC 54 ms
70,784 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 53 ms
68,992 KB
testcase_29 AC 46 ms
62,592 KB
testcase_30 AC 57 ms
73,600 KB
testcase_31 AC 71 ms
88,576 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 AC 70 ms
87,936 KB
testcase_40 RE -
testcase_41 AC 61 ms
79,616 KB
testcase_42 AC 61 ms
78,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
s = input()
w = []
a = []
c = []
for i in range((n + m) * 2):
    if s[i] == 'W':
        w.append(i)
    elif s[i] == 'A':
        a.append(i)
    else:
        c.append(i)
for i in range(n):
    if w[i] > a[i + n]:
        print('No')
        exit(0)
for i in range(m):
    if a[i] > c[i]:
        print('No')
        exit(0)
print('Yes')
0