結果
問題 | No.1617 Palindrome Removal |
ユーザー | tails |
提出日時 | 2021-07-27 22:29:18 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 558 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 29,952 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-23 19:38:21 |
合計ジャッジ時間 | 1,761 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 3 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,944 KB |
testcase_15 | AC | 1 ms
6,944 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 1 ms
6,944 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | AC | 1 ms
6,944 KB |
testcase_23 | AC | 1 ms
6,944 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:37:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration] 37 | _exit(0); | ^~~~~ | _Exit
ソースコード
#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=*p0; while(p0<p1){ long v0=*p0++; long v1=*--p1; if(v0!=v1){ goto owari; } a|=b^v0; } if(a){ 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{ owari:; char wbuf[64],*wp=wbuf+sizeof wbuf; wt(n); write(1,wp,wbuf+sizeof wbuf-wp); } _exit(0); }