結果
問題 | No.559 swapAB列 |
ユーザー |
|
提出日時 | 2017-08-25 22:29:41 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 345 bytes |
コンパイル時間 | 513 ms |
コンパイル使用メモリ | 64,408 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-15 15:59:21 |
合計ジャッジ時間 | 1,035 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 |
ソースコード
#include <iostream>#include <string>using namespace std;int main() {string s;cin >> s;int ans = 0;while (!s.empty()) {if (s.back() == 'B') {s.pop_back();continue;}int pos = s.find_last_of('B');if (pos == string::npos) {break;}swap(s[pos], s[pos + 1]);ans++;}cout << ans << endl;return 0;}