結果

問題 No.250 atetubouのzetubou
ユーザー tailstails
提出日時 2020-11-11 16:36:27
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 17 ms / 5,000 ms
コード長 728 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 31,232 KB
実行使用メモリ 36,820 KB
最終ジャッジ日時 2024-07-22 18:32:40
合計ジャッジ時間 1,171 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
36,644 KB
testcase_01 AC 10 ms
36,596 KB
testcase_02 AC 11 ms
36,736 KB
testcase_03 AC 11 ms
36,820 KB
testcase_04 AC 12 ms
36,628 KB
testcase_05 AC 11 ms
36,736 KB
testcase_06 AC 11 ms
36,736 KB
testcase_07 AC 11 ms
36,608 KB
testcase_08 AC 17 ms
36,608 KB
testcase_09 AC 11 ms
36,736 KB
testcase_10 AC 12 ms
36,716 KB
testcase_11 AC 11 ms
36,628 KB
testcase_12 AC 11 ms
36,608 KB
testcase_13 AC 11 ms
36,568 KB
testcase_14 AC 11 ms
36,448 KB
testcase_15 AC 11 ms
36,736 KB
testcase_16 AC 11 ms
36,736 KB
testcase_17 AC 12 ms
36,736 KB
testcase_18 AC 11 ms
36,736 KB
testcase_19 AC 11 ms
36,740 KB
testcase_20 AC 10 ms
36,440 KB
testcase_21 AC 10 ms
36,608 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:15:1: warning: return type defaults to 'int' [-Wimplicit-int]
   15 | main(){
      | ^~~~
main.c: In function 'main':
main.c:40:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   40 |         write(1,wbuf,wp-wbuf);
      |         ^~~~~
main.c:41:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   41 |         _exit(0);
      |         ^~~~~
      |         _Exit

ソースコード

diff #

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

void*shmat();
void*mmap();
#define RD(v) int v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;}
#define RDL(v) long v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;}

char wbuf[8*10000];

#define TMAX 1000000000000000l

long c[3000][1500];

main(){
	c[0][0]=1;
	for(int i=1;i<3000;++i){
		c[i][0]=1;
		for(int j=1;j<1500;++j){
			long x=c[i-1][j-1]+c[i-1][j];
			c[i][j]=x<(TMAX+1)?x:(TMAX+1);
		}
	}

	char*rp=mmap(0l,27l*10000+6,1,2,0,0ll);
	char*wp=wbuf;
	while(*rp++!=10);
	do{
		RD(d);
		RD(x);
		RDL(t);
		if(c[x+d-1][d-1]>t){
			*(long*)wp=0x0a554f425554455al;
			wp+=8;
		}else{
			*(int*)wp=0x0a4341;
			wp+=3;
		}
	}while(*rp);
	write(1,wbuf,wp-wbuf);
	_exit(0);
}
0