結果

問題 No.1894 Delete AB
ユーザー tailstails
提出日時 2022-04-08 21:54:44
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 29,312 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-28 12:35:14
合計ジャッジ時間 737 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'main':
main.c:7:16: warning: implicit declaration of function 'read' [-Wimplicit-function-declaration]
    7 |         long n=read(0,buf,sizeof buf);
      |                ^~~~
main.c:34:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   34 |         write(1,wp,buf+n-wp);
      |         ^~~~~
main.c:35:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   35 |         _exit(0);
      |         ^~~~~
      |         _Exit

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC target("avx2")

char buf[1<<18];

int main(){
	long n=read(0,buf,sizeof buf);
	char*rp=buf+n;
	char*wp=buf+n;
	long d=0;
	while(rp>buf){
		long c=*--rp;
		if(c==10){
			if(rp[-1]>='A'){
				*--wp=c;
				d=0;
			}
		}
		if(c=='A'){
			if(d){
				--d;
			}
			if(d){
				++wp;
			}else{
				*--wp=c;
			}
		}
		if(c=='B'){
			++d;
			*--wp=c;
		}
	}
	write(1,wp,buf+n-wp);
	_exit(0);
}
0