結果

問題 No.2857 Div Array
ユーザー tailstails
提出日時 2024-08-25 16:27:03
言語 cLay
(20240714-1)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 4,073 ms
コンパイル使用メモリ 179,008 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-25 16:27:09
合計ジャッジ時間 5,306 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 3 ms
6,948 KB
testcase_11 AC 27 ms
6,944 KB
testcase_12 AC 7 ms
6,940 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 24 ms
6,944 KB
testcase_15 AC 4 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 22 ms
6,944 KB
testcase_18 AC 20 ms
6,940 KB
testcase_19 AC 11 ms
6,944 KB
testcase_20 AC 32 ms
6,944 KB
testcase_21 AC 32 ms
6,940 KB
testcase_22 AC 31 ms
6,944 KB
testcase_23 AC 30 ms
6,944 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353
ll@n,@m,@k,v[m+1],w[64]{},t=1;
v[1]=0;
w[0]=1;
rep(i,2,m+1){
	t+=m/(i-1)!=m/i;
	v[i]=t-1;
	w[t-1]+=1;
}
Matrix<Mint>a(t,t);
a=0;
rep(y,1,m+1){
	if(y==1||m/y!=m/(y-1)){
		rep(x,1,m+1){
			if(abs(m/y-m/x)<=k){
				a[v[y]][v[x]]+=1;
			}
		}
	}
}
a**=n-1;
wt(sum[y,0,t,x,0,t](a[y][x]*w[y]));
0