結果
| 問題 |
No.2021 Not A but B
|
| コンテスト | |
| ユーザー |
umezo
|
| 提出日時 | 2022-07-29 21:36:50 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 55 ms / 2,000 ms |
| コード長 | 522 bytes |
| コンパイル時間 | 2,000 ms |
| コンパイル使用メモリ | 198,968 KB |
| 最終ジャッジ日時 | 2025-01-30 15:04:32 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 26 |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
#include<bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(false);
std::cin.tie(nullptr);
int n;
string s;
cin>>n>>s;
set<pair<int,int>> se;
rep(i,n-1){
if(s[i]=='A' && s[i+1]=='A') se.insert({i,i+1});
else if(s[i]=='A') se.insert({i,-1});
else if(s[i+1]=='A') se.insert({i+1,-1});
else se.insert({-1,-1});
}
cout<<se.size()<<endl;
return 0;
}
umezo