結果

問題 No.616 へんなソート
ユーザー %20%20
提出日時 2017-12-16 03:01:03
言語 cLay
(20240714-1)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 2,832 ms
コンパイル使用メモリ 176,480 KB
実行使用メモリ 57,740 KB
最終ジャッジ日時 2024-07-05 12:49:27
合計ジャッジ時間 4,507 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
56,936 KB
testcase_01 AC 35 ms
57,740 KB
testcase_02 AC 37 ms
56,996 KB
testcase_03 AC 34 ms
56,160 KB
testcase_04 AC 33 ms
56,288 KB
testcase_05 AC 33 ms
56,692 KB
testcase_06 AC 34 ms
56,540 KB
testcase_07 AC 33 ms
57,024 KB
testcase_08 AC 33 ms
57,184 KB
testcase_09 AC 33 ms
57,160 KB
testcase_10 AC 40 ms
56,864 KB
testcase_11 AC 37 ms
57,320 KB
testcase_12 AC 36 ms
56,200 KB
testcase_13 AC 48 ms
56,272 KB
testcase_14 AC 34 ms
56,480 KB
testcase_15 AC 32 ms
56,164 KB
testcase_16 AC 33 ms
56,264 KB
testcase_17 AC 46 ms
56,576 KB
testcase_18 AC 39 ms
57,152 KB
testcase_19 AC 38 ms
56,444 KB
testcase_20 AC 34 ms
56,660 KB
testcase_21 AC 33 ms
57,016 KB
testcase_22 AC 36 ms
56,488 KB
testcase_23 AC 34 ms
56,416 KB
testcase_24 AC 33 ms
57,344 KB
testcase_25 AC 33 ms
57,716 KB
testcase_26 AC 34 ms
57,096 KB
testcase_27 AC 34 ms
56,428 KB
testcase_28 AC 60 ms
56,620 KB
testcase_29 AC 61 ms
56,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll N,K;
mint d[301][44851],t,x;
{
	rd(N,K);
	d[1][0]=1;
	for(ll i=2;i<=N;++i){
		for(ll j=t=0;j<=i*(i-1)/2;++j){
			t+=d[i-1][j];
			if(j>=i)t-=d[i-1][j-i];
			d[i][j]=t;
		}
	}
	x+=d[N][0..K];
	wt(x);
}
0