結果
問題 | No.2021 Not A but B |
ユーザー | okkuukenken |
提出日時 | 2022-07-29 21:33:20 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 9 ms / 2,000 ms |
コード長 | 649 bytes |
コンパイル時間 | 1,262 ms |
コンパイル使用メモリ | 130,880 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 13:17:34 |
合計ジャッジ時間 | 2,368 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 26 |
ソースコード
#define _USE_MATH_DEFINES #include<iostream> #include<vector> #include<algorithm> #include<cmath> #include<string> #include<iomanip> #include<numeric> #include<queue> #include<deque> #include<stack> #include<set> #include<map> #include<random> #include<bitset> #include<cassert> using namespace std; typedef long long ll; const int mod=1e9+7; const int dx[]={1,0,0,-1},dy[]={0,1,-1,0}; int main(){ int n; string s; cin>>n>>s; bool f=0; int ans=n-1; for(int i=1;i<n-1;i++) if(s[i-1]=='B'&&s[i]=='A'&&s[i+1]=='B') ans--; for(int i=0;i<n-1;i++){ if(s[i]=='B'&&s[i+1]=='B'){ if(!f) f=1; else ans--; } } cout<<ans<<endl; }