結果
問題 | No.559 swapAB列 |
ユーザー | Yut176 |
提出日時 | 2017-10-08 18:15:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 556 bytes |
コンパイル時間 | 686 ms |
コンパイル使用メモリ | 82,148 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-04-28 13:32:22 |
合計ジャッジ時間 | 1,267 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<cstdio> #include<cstdlib> #include<string> #include<sstream> #include<cmath> #include<numeric> #include<map> #include<stack> #include<queue> using namespace std; int inf = 1000000000; int main(void) { string s; cin >> s; bool f = true; int cnt = 0; while( f ){ f = false; for(int i=0; i<s.size()-1; i++){ if( s[i] == 'B' && s[i+1] == 'A' ){ swap(s[i], s[i+1]); cnt++; f = true; } } } cout << cnt << endl; return 0; } // EOF