結果

問題 No.559 swapAB列
ユーザー Kenshin2438Kenshin2438
提出日時 2022-10-02 00:03:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 1,477 ms
コンパイル使用メモリ 167,076 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-25 20:21:32
合計ジャッジ時間 2,176 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

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