結果

問題 No.559 swapAB列
ユーザー conankunconankun
提出日時 2017-10-15 14:32:42
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 503 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 55,428 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-28 21:30:26
合計ジャッジ時間 1,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 1 ms
5,376 KB
testcase_09 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:29:28: warning: ‘bpos’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   29 |     cout << apos - bpos << "\n";
      |                            ^~~~
main.cpp:29:28: warning: ‘apos’ may be used uninitialized in this function [-Wmaybe-uninitialized]

ソースコード

diff #

#include <iostream>
#include <string>

using namespace std;

int main() {
    string ab;
    cin >> ab;

    int len = ab.length();
    int bpos;

    for (int i = 0; i < len; i++) {
        if (ab[i] == 'B') {
            bpos = i;
            break;
        }
    }

    int apos;

    for (int i = len - 1; i >= 0; i--) {
        if (ab[i] == 'A') {
            apos = i;
            break;
        }
    }

    cout << apos - bpos << "\n";

    int a;
    cin >> a;
}
0