結果

問題 No.2815 Smaller than all
ユーザー tails
提出日時 2024-07-21 02:00:55
言語 C90
(gcc 12.3.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 551 bytes
コンパイル時間 1,406 ms
コンパイル使用メモリ 26,368 KB
最終ジャッジ日時 2025-06-20 02:15:57
合計ジャッジ時間 2,120 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.c: In function 'main':
main.c:8:31: error: expected ';' before '_'
    8 | #define times(e) for(typeof(e)_=e;_--;)
      |                               ^
main.c:15:9: note: in expansion of macro 'times'
   15 |         times(n){
      |         ^~~~~
main.c:8:35: error: '_' undeclared (first use in this function)
    8 | #define times(e) for(typeof(e)_=e;_--;)
      |                                   ^
main.c:15:9: note: in expansion of macro 'times'
   15 |         times(n){
      |         ^~~~~
main.c:8:35: note: each undeclared identifier is reported only once for each function it appears in
    8 | #define times(e) for(typeof(e)_=e;_--;)
      |                                   ^
main.c:15:9: note: in expansion of macro 'times'
   15 |         times(n){
      |         ^~~~~

ソースコード

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 wt1(v) ({char wbuf[64],*wp=wbuf+sizeof wbuf;wt(v);write(1,wp,wbuf+sizeof wbuf-wp);})
#define times(e) for(typeof(e)_=e;_--;)

int main(){
	rd_init();
	int n=rd();
	int a=1<<30;
	int b=0;
	times(n){
		int x=rd();
		if(a<x) break;
		if(a>x) b=0;
		++b;
		a=x;
	}
	wt1(b);
	_exit(0);
}
0