結果

問題 No.801 エレベーター
ユーザー kotatsugamekotatsugame
提出日時 2019-03-18 01:32:33
言語 cLay
(20240714-1)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 2,886 ms
コンパイル使用メモリ 177,108 KB
実行使用メモリ 67,792 KB
最終ジャッジ日時 2024-07-05 13:21:27
合計ジャッジ時間 6,868 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
66,148 KB
testcase_01 AC 45 ms
66,188 KB
testcase_02 AC 46 ms
67,212 KB
testcase_03 AC 48 ms
66,884 KB
testcase_04 AC 48 ms
67,656 KB
testcase_05 AC 47 ms
66,064 KB
testcase_06 AC 47 ms
66,764 KB
testcase_07 AC 48 ms
66,044 KB
testcase_08 AC 48 ms
67,312 KB
testcase_09 AC 47 ms
67,020 KB
testcase_10 AC 47 ms
67,260 KB
testcase_11 AC 47 ms
67,020 KB
testcase_12 AC 48 ms
66,304 KB
testcase_13 AC 153 ms
67,012 KB
testcase_14 AC 151 ms
66,900 KB
testcase_15 AC 151 ms
66,172 KB
testcase_16 AC 152 ms
66,228 KB
testcase_17 AC 153 ms
66,884 KB
testcase_18 AC 154 ms
67,376 KB
testcase_19 AC 152 ms
65,996 KB
testcase_20 AC 153 ms
65,916 KB
testcase_21 AC 151 ms
66,084 KB
testcase_22 AC 153 ms
67,792 KB
testcase_23 AC 164 ms
67,092 KB
testcase_24 AC 165 ms
66,352 KB
testcase_25 AC 164 ms
67,012 KB
testcase_26 AC 164 ms
66,348 KB
testcase_27 AC 165 ms
66,892 KB
testcase_28 AC 120 ms
66,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mint D[4d3][4d3],W;
ll L[3d4],R[3d4],n,m,k;
{
	rd(n,m,k,(L,R)(m));
	D[0][1]=1;
	rep(i,k){
		rep(j,n)D[i][j+1]+=D[i][j];
		rep(j,m){
			D[i+1][L[j]]+=W=D[i][R[j]]-D[i][L[j]-1];
			D[i+1][R[j]+1]-=W;
		}
		rep(j,n)D[i+1][j+1]+=D[i+1][j];
	}
	wt(D[k][n]);
}
0