結果

問題 No.2773 Wake up Record 1
ユーザー tails
提出日時 2024-06-10 09:24:48
言語 C90
(gcc 12.3.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 592 bytes
コンパイル時間 1,904 ms
コンパイル使用メモリ 26,368 KB
最終ジャッジ日時 2025-01-01 18:36:07
合計ジャッジ時間 2,706 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.c: In function 'main':
main.c:19:14: error: expected ';' before 'i'
   19 |         rrep(i,n){
      |              ^
main.c:7:33: note: in definition of macro 'rrep'
    7 | #define rrep(v,e) for(typeof(e) v=e;v--;)
      |                                 ^
main.c:19:14: error: 'i' undeclared (first use in this function)
   19 |         rrep(i,n){
      |              ^
main.c:7:37: note: in definition of macro 'rrep'
    7 | #define rrep(v,e) for(typeof(e) v=e;v--;)
      |                                     ^
main.c:19:14: note: each undeclared identifier is reported only once for each function it appears in
   19 |         rrep(i,n){
      |              ^
main.c:7:37: note: in definition of macro 'rrep'
    7 | #define rrep(v,e) for(typeof(e) v=e;v--;)
      |                                     ^

ソースコード

diff #

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

#define rd_init() char*rp=({char*mmap();mmap(0l,1l<<25,1,2,0,0ll);})
#define rd() ({int _v=0,_c;while(_c=*rp++-48,_c>=0)_v=_v*10+_c;_v;})
#define wt(v) ({unsigned _z=v;do*--wp=_z%10+48;while(_z/=10);})
#define rrep(v,e) for(typeof(e) v=e;v--;)

typedef unsigned long ulong;

char wbuf[1<<25];

int main(){
	rd_init();
	int n=rd();
	int z=0;
	char*wp=wbuf+sizeof wbuf;
	*--wp='\n';
	rrep(i,n){
		if(rp[i]=='x'&&rp[i+1]=='o'){
			wt(i+2);
			*--wp=' ';
			++z;
		}
	}
	*--wp='\n';
	wt(z);
	write(1,wp,wbuf+sizeof wbuf-wp);
	_exit(0);
}
0