結果

問題 No.1618 Convolution?
ユーザー tailstails
提出日時 2021-07-27 22:54:51
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 910 bytes
コンパイル時間 1,840 ms
コンパイル使用メモリ 32,128 KB
実行使用メモリ 16,336 KB
最終ジャッジ日時 2024-07-23 20:56:33
合計ジャッジ時間 6,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 12 ms
10,908 KB
testcase_03 AC 13 ms
11,976 KB
testcase_04 AC 15 ms
11,648 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 19 ms
13,200 KB
testcase_07 AC 20 ms
13,352 KB
testcase_08 AC 15 ms
12,256 KB
testcase_09 AC 23 ms
15,296 KB
testcase_10 AC 15 ms
11,656 KB
testcase_11 AC 21 ms
14,036 KB
testcase_12 AC 21 ms
14,960 KB
testcase_13 AC 21 ms
15,396 KB
testcase_14 AC 21 ms
15,180 KB
testcase_15 AC 21 ms
16,336 KB
testcase_16 AC 22 ms
15,552 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:16:1: warning: return type defaults to 'int' [-Wimplicit-int]
   16 | main(){
      | ^~~~
main.c: In function 'main':
main.c:45:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   45 |         write(1,wbuf,wp-wbuf);
      |         ^~~~~
main.c:46:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   46 |         _exit(0);
      |         ^~~~~
      |         _Exit

ソースコード

diff #

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

char*mmap();
char wbuf[1<<25];

#define rd(v) long v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;}
#define WTHI(v) {long _z=v,_n=0,_d=0;while(++_n,_d=_d<<8|0x30|_z%10,_z/=10);*(long*)wp=_d;wp+=_n;}
#define WTLO(v) {long _z=v,_n=8,_d=0;while(_d=_d<<8|0x30|_z%10,_z/=10,--_n);*(long*)wp=_d;wp+=8;}
#define wt(v) if(v>=100000000){WTHI(v/100000000);WTLO(v);}else{WTHI(v);}
#define rep(v,e) for(long v=0;v<e;++v)

int a[200000];
long c[400000];

main(){
	char*wp=wbuf;
	*wp++='0';
	*wp++=' ';
	char*rp=mmap(0l,1l<<25,1,2,0,0ll);
	rd(n);
	long s=0,t=0;
	rep(i,n){
		rd(x);
		a[i]=x;
		c[i]=t+=s+=x;
	}
	rep(i,n){
		long x=a[i];
		c[i+n]=t+=(s-=x)-n*x;
	}
	rep(i,n){
		rd(x);
		a[i]=x;
		long y=c[i]+(t+=s+=x);
		wt(y);
		*wp++=' ';
	}
	rep(i,n-1){
		long x=a[i];
		long y=c[i+n]+(t+=(s-=x)-n*x);
		wt(y);
		*wp++=' ';
	}
	write(1,wbuf,wp-wbuf);
	_exit(0);
}
0