結果

問題 No.2240 WAC
ユーザー ttkkggwwttkkggww
提出日時 2023-03-10 21:50:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 630 bytes
コンパイル時間 4,338 ms
コンパイル使用メモリ 268,696 KB
実行使用メモリ 22,360 KB
最終ジャッジ日時 2024-09-18 04:05:49
合計ジャッジ時間 7,337 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 112 ms
22,360 KB
testcase_11 WA -
testcase_12 AC 123 ms
22,360 KB
testcase_13 AC 31 ms
9,984 KB
testcase_14 AC 12 ms
6,940 KB
testcase_15 AC 63 ms
16,024 KB
testcase_16 WA -
testcase_17 AC 54 ms
13,696 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 71 ms
17,036 KB
testcase_21 WA -
testcase_22 AC 41 ms
12,160 KB
testcase_23 AC 30 ms
9,984 KB
testcase_24 AC 64 ms
15,744 KB
testcase_25 WA -
testcase_26 AC 25 ms
8,320 KB
testcase_27 AC 19 ms
6,944 KB
testcase_28 AC 29 ms
9,088 KB
testcase_29 AC 9 ms
6,940 KB
testcase_30 AC 43 ms
12,140 KB
testcase_31 AC 92 ms
19,928 KB
testcase_32 WA -
testcase_33 AC 46 ms
12,928 KB
testcase_34 AC 57 ms
14,708 KB
testcase_35 AC 8 ms
6,944 KB
testcase_36 WA -
testcase_37 AC 78 ms
18,428 KB
testcase_38 AC 30 ms
9,344 KB
testcase_39 AC 92 ms
20,568 KB
testcase_40 AC 43 ms
11,904 KB
testcase_41 AC 57 ms
14,976 KB
testcase_42 AC 56 ms
14,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;
string s;

ll n,m;

void solve(){
	set<int> W,A,C;
	for(int i = 0;i<s.size();i++){
		if(s[i]=='W'){
			W.insert(i);
		}else if(s[i]=='A'){
			A.insert(i);
		}else{
			C.insert(i);
		}
	}
	for(auto &i:C){
		auto it = A.begin();
		if(i<(*it)){
			cout<<"No"<<endl;
			return;
		}
		A.erase(it);
	}
	for(auto &i:W){
		auto it = A.begin();
		if((*it)<i){
			cout<<"No"<<endl;
			return;
		}
	}
	cout<<"Yes"<<endl;
}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	cin >> n >> m;
	cin >> s;
	solve();
}
0