結果

問題 No.1307 Rotate and Accumulate
ユーザー tailstails
提出日時 2020-12-04 09:26:51
言語 cLay
(20240714-1)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 182 bytes
コンパイル時間 5,164 ms
コンパイル使用メモリ 189,768 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-07-05 14:49:01
合計ジャッジ時間 7,607 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,744 KB
testcase_01 AC 4 ms
7,876 KB
testcase_02 AC 4 ms
10,152 KB
testcase_03 AC 4 ms
7,872 KB
testcase_04 AC 4 ms
8,572 KB
testcase_05 AC 4 ms
7,492 KB
testcase_06 AC 3 ms
7,364 KB
testcase_07 AC 4 ms
6,980 KB
testcase_08 AC 36 ms
11,688 KB
testcase_09 AC 36 ms
10,388 KB
testcase_10 AC 34 ms
11,024 KB
testcase_11 AC 38 ms
9,344 KB
testcase_12 AC 36 ms
9,984 KB
testcase_13 AC 8 ms
6,144 KB
testcase_14 AC 19 ms
7,552 KB
testcase_15 AC 69 ms
13,440 KB
testcase_16 AC 71 ms
13,440 KB
testcase_17 AC 70 ms
13,440 KB
testcase_18 AC 69 ms
13,312 KB
testcase_19 AC 71 ms
13,440 KB
testcase_20 AC 71 ms
13,440 KB
testcase_21 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353

Mint a[2d5],b[1d5],c[2d5];

{
	int @n,@q;
	rd(a(n));
	a[n..2n-1]=a[0..];
	rep(q){
		int @r;
		b[r?n-r:0]+=1;
	}
	convolution(a,2n,b,n,c,2n);
	wt(((c+n))(n));
}
0