結果

問題 No.1894 Delete AB
ユーザー laneguelanegue
提出日時 2022-04-08 22:00:58
言語 D
(dmd 2.106.1)
結果
TLE  
実行時間 -
コード長 469 bytes
コンパイル時間 1,447 ms
コンパイル使用メモリ 175,056 KB
実行使用メモリ 13,944 KB
最終ジャッジ日時 2024-06-22 14:50:31
合計ジャッジ時間 5,934 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,884 KB
testcase_01 AC 153 ms
7,188 KB
testcase_02 AC 185 ms
7,220 KB
testcase_03 AC 17 ms
6,944 KB
testcase_04 AC 21 ms
6,940 KB
testcase_05 AC 20 ms
6,944 KB
testcase_06 AC 23 ms
6,944 KB
testcase_07 AC 24 ms
6,944 KB
testcase_08 AC 29 ms
6,944 KB
testcase_09 AC 31 ms
6,940 KB
testcase_10 AC 45 ms
6,944 KB
testcase_11 AC 72 ms
6,944 KB
testcase_12 AC 110 ms
6,940 KB
testcase_13 TLE -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main(){
	auto T = readln.chomp.to!int;
	for(auto t = 0; t < T; t++){
		auto N = readln.chomp.to!int;
		auto S = readln.chomp;
		auto s = "";
		while(1){
			s = "";
			for(auto i = 0; i < S.length; i++){
				if(S[i] == 'A' && i < S.length - 2 && S[i + 1] == 'B' && S[i + 2] == 'B'){
					i += 2;
				}
				s ~= S[i];
				//stderr.writefln("%d %s", i, s);
			}
			if(S.length == s.length) break;
			S = s;
			//stderr.writeln(s);
		}
		writeln(s);
	}
}
0