結果
問題 |
No.2021 Not A but B
|
ユーザー |
|
提出日時 | 2022-07-29 22:33:18 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 583 bytes |
コンパイル時間 | 7,350 ms |
コンパイル使用メモリ | 260,788 KB |
最終ジャッジ日時 | 2025-01-30 15:32:49 |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 5 TLE * 16 MLE * 5 |
ソースコード
#include <bits/stdc++.h> #include <numeric> using namespace std; static inline void solution() { int n; cin >> n; string s; cin >> s; const int N = 2e5 + 1; bitset<N> b; for (int i = 0; i < n; i++) { if (s[i] == 'A') { b.set(i, true); } } set<string> st; for (int i = 0; i < n - 1; i++) { b.set(i, false); b.set(i + 1, false); st.insert(b.to_string()); b.set(i, s[i] == 'A'); b.set(i + 1, s[i + 1] == 'A'); } cout << st.size() << '\n'; } int main() { ios_base::sync_with_stdio(0), cin.tie(0); solution(); return 0; }