結果

問題 No.1617 Palindrome Removal
ユーザー tailstails
提出日時 2021-07-27 22:34:09
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 1,300 ms
コンパイル使用メモリ 33,024 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 20:37:14
合計ジャッジ時間 2,401 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 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 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:8:1: warning: return type defaults to 'int' [-Wimplicit-int]
    8 | main(){
      | ^~~~
main.c: In function 'main':
main.c:9:16: warning: implicit declaration of function 'read' [-Wimplicit-function-declaration]
    9 |         long n=read(0,rbuf,sizeof rbuf);
      |                ^~~~
main.c:28:17: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   28 |                 write(1,"-1",2);
      |                 ^~~~~
main.c:36:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   36 |         _exit(0);
      |         ^~~~~
      |         _Exit

ソースコード

diff #

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

char rbuf[1<<20];

#define wt(v) {long _z=v;do*--wp=_z%10+48;while(_z/=10);}

main(){
	long n=read(0,rbuf,sizeof rbuf);
	n-=1;
	char*p0=rbuf;
	char*p1=rbuf+n;
	long a=0,b=0,c=*p0;
	while(p0<p1){
		long v0=*p0++;
		long v1=*--p1;
		a|=v0^v1;
		b|=v0^c;
	}
	if(!a){
		if(b){
			n=n==3?-1:n-2;
		}else{
			n=-(n&1);
		}
	}
	if(n<0){
		write(1,"-1",2);
	}else if(n==0){
		write(1,"0",1);
	}else{
		char wbuf[64],*wp=wbuf+sizeof wbuf;
		wt(n);
		write(1,wp,wbuf+sizeof wbuf-wp);
	}
	_exit(0);
}
0