結果

問題 No.559 swapAB列
ユーザー Kenshin2438
提出日時 2022-10-02 00:03:53
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 1,589 ms
コンパイル使用メモリ 170,856 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-24 06:27:24
合計ジャッジ時間 2,153 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
#define all(a) begin(a), end(a)
#define sz(x) (int)((x).size())

#ifdef LOCAL
#include "debug.hpp"
#else
#define debug(...) 42
#endif

void solve() {
  string s; cin >> s;
  assert(s.length() <= 2e5);
  vector<int> p;
  for (int i = 0; i < sz(s); i++) {
    assert(s[i] == 'A' || s[i] == 'B');
    if (s[i] == 'A') p.emplace_back(i);
  }
  ll ans = 0;
  for (int i = 0; i < sz(p); i++) ans += p[i] - i;
  cout << ans << '\n';
}

int main() {
  cin.tie(nullptr)->sync_with_stdio(false);

  int T = 1;
  // cin >> T;
  while (T--) solve();

  return 0;
}
0