結果

問題 No.672 最長AB列
ユーザー GBGB
提出日時 2018-09-17 15:09:54
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 684 bytes
コンパイル時間 759 ms
コンパイル使用メモリ 119,168 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-05-07 17:51:23
合計ジャッジ時間 4,432 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 WA -
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>

using namespace std;

int main() {

	string str;

	cin >> str;

	int str_cout=0;
	int now=0;
	int len=0;

	if (str.size() == 1) {
		cout << len << endl;
		return 0;
	}
	else {
		for (int i = 0;i < str.size()-1;i++) {
			str_cout = 0;
			now = i;
			for (int j = i;j < str.size();j++) {
				char buf = str[j];
				if (buf == 'A')str_cout++;
				else if (buf == 'B')str_cout--;
				if (j > i && str_cout == 0) {
					int buflen = (j - now) + 1;
					if (buflen > len) {
						len = buflen;
						now = j; 
					}
				}
			}
			if (str_cout == str.size()) {
				cout << "200000" << endl;
				return 0;
			}
		}
	}

	cout << len << endl;

	return 0;
}
0