結果
問題 | No.675 ドットちゃんたち |
ユーザー | tails |
提出日時 | 2021-07-02 10:32:42 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 927 bytes |
コンパイル時間 | 147 ms |
コンパイル使用メモリ | 30,592 KB |
実行使用メモリ | 7,552 KB |
最終ジャッジ日時 | 2024-06-28 20:26:55 |
合計ジャッジ時間 | 2,293 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 5 ms
5,376 KB |
testcase_06 | AC | 11 ms
7,552 KB |
testcase_07 | AC | 9 ms
6,272 KB |
testcase_08 | AC | 7 ms
5,632 KB |
testcase_09 | AC | 12 ms
6,912 KB |
testcase_10 | AC | 11 ms
6,912 KB |
testcase_11 | AC | 11 ms
7,168 KB |
コンパイルメッセージ
main.c:49:1: warning: return type defaults to 'int' [-Wimplicit-int] 49 | main(){ | ^~~~ main.c: In function 'main': main.c:56:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration] 56 | write(1,wp,wbuf+sizeof wbuf-wp); | ^~~~~ main.c:57:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration] 57 | _exit(0); | ^~~~~ | _Exit
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC target("avx2") char*mmap(); char wbuf[1<<25]; #define rd_skip() while(*rp++>=48) #define rd(v) long v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;} #define rd_signed(v) long v=0;{int _c,_s;_s=*rp=='-'&&++rp;while(_c=*rp++-48,_c>=0)v=v*10+_c;v=_s?-v:v;} #define wt_signed(v) {long _z=v,_s;_s=_z<0?_z=-_z,1:0;do*--wp=_z%10+48;while(_z/=10);if(_s)*--wp='-';} char*rp,*wp; long px,py; long tx,ty,r; void f(){ long c,d; c=*rp; rp+=2; if(c!='3'){ rd(t); d=t; } if(*rp){ f(); } if(c=='3'){ r+=1; long t=px; px=py; py=-t; }else{ long rr=r+(c=='1'); d=rr&2?-d:d; if(rr&1){ tx+=d; }else{ ty+=d; } } { *--wp='\n'; wt_signed(py+ty); *--wp=' '; wt_signed(px+tx); } } main(){ rp=mmap(0l,1l<<25,1,2,0,0ll); wp=wbuf+sizeof wbuf; rd_skip(); { rd_signed(x); px=x; } { rd_signed(y); py=y; } f(); write(1,wp,wbuf+sizeof wbuf-wp); _exit(0); }