結果
問題 | No.154 市バス |
ユーザー | tails |
提出日時 | 2020-10-28 17:46:54 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 518 bytes |
コンパイル時間 | 342 ms |
コンパイル使用メモリ | 29,824 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-21 22:17:31 |
合計ジャッジ時間 | 1,133 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
5,248 KB |
testcase_01 | AC | 6 ms
5,376 KB |
testcase_02 | AC | 5 ms
5,376 KB |
testcase_03 | AC | 6 ms
5,376 KB |
testcase_04 | AC | 6 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.c:9:1: warning: return type defaults to 'int' [-Wimplicit-int] 9 | main(){ | ^~~~ main.c: In function 'main': main.c:21:39: warning: multi-character character constant [-Wmultichar] 21 | if(f<0|x|g) *(int*)wp='mi', wp+=2; | ^~~~ main.c:22:34: warning: multi-character character constant [-Wmultichar] 22 | *(long*)wp=(long)'ssop'|(long)'elbi'<<32; | ^~~~~~ main.c:22:47: warning: multi-character character constant [-Wmultichar] 22 | *(long*)wp=(long)'ssop'|(long)'elbi'<<32; | ^~~~~~ main.c:26:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration] 26 | write(1,wbuf,wp-wbuf); | ^~~~~
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC target("avx2") char*mmap(); #define RD(v) int v=0;{int _t;while(_t=*rp++-48,_t>=0)v=v*10+_t;} char wbuf[12<<10]; main(){ char*rp=mmap(0l,1l<<20,1,2,0,0ll); char*wp=wbuf; while(*rp++!=10); do{ int g=0,w=0,x=0,f=0; int c; while(c=*rp++,c!=10){ if(c=='W') x=1,++w; if(c=='G') x=0,++g,f|=--w; if(c=='R') f|=--g; } if(f<0|x|g) *(int*)wp='mi', wp+=2; *(long*)wp=(long)'ssop'|(long)'elbi'<<32; wp+=8; *wp++=10; }while(*rp); write(1,wbuf,wp-wbuf); }