結果

問題 No.2240 WAC
ユーザー ntudantuda
提出日時 2023-04-28 12:10:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 76,244 KB
最終ジャッジ日時 2024-11-17 13:10:08
合計ジャッジ時間 4,321 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,104 KB
testcase_01 AC 38 ms
53,128 KB
testcase_02 AC 39 ms
53,348 KB
testcase_03 AC 38 ms
52,568 KB
testcase_04 AC 38 ms
51,688 KB
testcase_05 AC 39 ms
53,216 KB
testcase_06 AC 38 ms
52,068 KB
testcase_07 AC 38 ms
52,012 KB
testcase_08 AC 41 ms
53,136 KB
testcase_09 AC 39 ms
53,560 KB
testcase_10 AC 70 ms
76,244 KB
testcase_11 AC 66 ms
75,840 KB
testcase_12 AC 67 ms
75,672 KB
testcase_13 AC 39 ms
52,800 KB
testcase_14 AC 46 ms
63,988 KB
testcase_15 AC 39 ms
53,824 KB
testcase_16 AC 69 ms
75,712 KB
testcase_17 AC 52 ms
73,832 KB
testcase_18 AC 54 ms
72,580 KB
testcase_19 AC 58 ms
75,040 KB
testcase_20 AC 39 ms
54,276 KB
testcase_21 AC 62 ms
75,576 KB
testcase_22 AC 39 ms
53,012 KB
testcase_23 AC 39 ms
53,260 KB
testcase_24 AC 39 ms
54,528 KB
testcase_25 AC 67 ms
75,436 KB
testcase_26 AC 47 ms
67,440 KB
testcase_27 AC 46 ms
64,952 KB
testcase_28 AC 38 ms
53,064 KB
testcase_29 AC 39 ms
52,768 KB
testcase_30 AC 39 ms
53,768 KB
testcase_31 AC 60 ms
75,368 KB
testcase_32 AC 54 ms
71,600 KB
testcase_33 AC 51 ms
73,180 KB
testcase_34 AC 55 ms
75,264 KB
testcase_35 AC 45 ms
61,556 KB
testcase_36 AC 67 ms
75,348 KB
testcase_37 AC 40 ms
55,188 KB
testcase_38 AC 39 ms
53,856 KB
testcase_39 AC 40 ms
55,172 KB
testcase_40 AC 51 ms
72,840 KB
testcase_41 AC 39 ms
53,884 KB
testcase_42 AC 40 ms
54,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
S = input()
NS = len(S)
a,w,c = 0,0,0

for i in range(NS):
    s = S[i]
    if s == "A":
        a += 1
    elif s == "C":
        c += 1
    if a < c:
        print("No")
        exit()

a,w,c = 0,0,0

for i in reversed(range(NS)):
    s = S[i]
    if s == "A":
        a += 1
    elif s == "W":
        w += 1
    if a < w:
        print("No")
        exit()
print("Yes")
0