結果

問題 No.2240 WAC
ユーザー shobonvipshobonvip
提出日時 2023-03-06 00:42:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 602 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 65,920 KB
最終ジャッジ日時 2024-09-18 01:46:10
合計ジャッジ時間 3,730 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 WA -
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 35 ms
52,064 KB
testcase_06 AC 36 ms
51,584 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 WA -
testcase_10 AC 56 ms
64,256 KB
testcase_11 AC 59 ms
64,512 KB
testcase_12 WA -
testcase_13 AC 37 ms
52,992 KB
testcase_14 WA -
testcase_15 AC 37 ms
53,504 KB
testcase_16 AC 62 ms
64,640 KB
testcase_17 WA -
testcase_18 AC 54 ms
64,512 KB
testcase_19 AC 54 ms
64,384 KB
testcase_20 AC 37 ms
54,272 KB
testcase_21 AC 56 ms
64,256 KB
testcase_22 AC 41 ms
52,992 KB
testcase_23 AC 39 ms
52,736 KB
testcase_24 AC 41 ms
53,760 KB
testcase_25 AC 64 ms
65,024 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 41 ms
52,352 KB
testcase_29 AC 37 ms
51,968 KB
testcase_30 AC 38 ms
53,120 KB
testcase_31 WA -
testcase_32 AC 52 ms
64,768 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 62 ms
65,408 KB
testcase_37 AC 41 ms
54,016 KB
testcase_38 AC 40 ms
52,736 KB
testcase_39 AC 40 ms
54,016 KB
testcase_40 WA -
testcase_41 AC 41 ms
53,120 KB
testcase_42 AC 41 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int,input().split())
s = input()
assert 1 <= n <= 10 ** 5
assert 1 <= m <= 10 ** 5

w = s.count("W")
a = s.count("A")
c = s.count("C")
assert w == n
assert a == n + m
assert c == m
assert len(s) == 2*(n+m)

pivot = 0
for i in range(2*(n+m)):
	if s[i] == "C":
		mode = 0
		while pivot < i and mode == 0:
			if s[pivot] == "A":
				mode = 1
			pivot += 1
		if mode == 0:
			print("No")
			exit()

for i in range(2*(n+m)):
	if s[i] == "W":
		mode = 0
		while pivot < 2*(n+m) and mode == 0:
			if s[pivot] == "A":
				mode = 1
			pivot += 1
		if mode == 0:
			print("No")
			exit()

print("Yes")
0