結果

問題 No.129 お年玉(2)
ユーザー tsukiotsukio
提出日時 2016-03-04 20:25:14
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 246 ms / 5,000 ms
コード長 528 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 54,744 KB
実行使用メモリ 198,912 KB
最終ジャッジ日時 2024-05-05 22:59:14
合計ジャッジ時間 7,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
13,056 KB
testcase_01 AC 244 ms
198,912 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 102 ms
83,072 KB
testcase_06 AC 157 ms
130,176 KB
testcase_07 AC 188 ms
159,104 KB
testcase_08 AC 132 ms
109,056 KB
testcase_09 AC 177 ms
146,688 KB
testcase_10 AC 200 ms
164,864 KB
testcase_11 AC 130 ms
104,832 KB
testcase_12 AC 166 ms
136,192 KB
testcase_13 AC 177 ms
142,464 KB
testcase_14 AC 172 ms
137,600 KB
testcase_15 AC 138 ms
113,536 KB
testcase_16 AC 159 ms
128,896 KB
testcase_17 AC 187 ms
156,160 KB
testcase_18 AC 174 ms
147,072 KB
testcase_19 AC 190 ms
157,056 KB
testcase_20 AC 191 ms
155,648 KB
testcase_21 AC 241 ms
194,304 KB
testcase_22 AC 135 ms
110,208 KB
testcase_23 AC 209 ms
169,856 KB
testcase_24 AC 203 ms
163,328 KB
testcase_25 AC 128 ms
105,216 KB
testcase_26 AC 134 ms
107,776 KB
testcase_27 AC 128 ms
104,576 KB
testcase_28 AC 238 ms
196,224 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 29 ms
24,192 KB
testcase_39 AC 42 ms
35,712 KB
testcase_40 AC 117 ms
97,792 KB
testcase_41 AC 75 ms
60,288 KB
testcase_42 AC 31 ms
27,136 KB
testcase_43 AC 31 ms
26,880 KB
testcase_44 AC 246 ms
197,376 KB
testcase_45 AC 18 ms
16,128 KB
testcase_46 AC 48 ms
39,680 KB
testcase_47 AC 236 ms
190,592 KB
testcase_48 AC 148 ms
115,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

const long long kMod = 1000000000;

long long CalcCombination(int n, int r) {
	int** dp = new int*[n + 1];
	for (int i = 0; i < n + 1; i++) {
		dp[i] = new int[i + 1];
		for (int j = 0; j < i + 1; j++) {
			if (j == 0 || j == i) {
				dp[i][j] = 1;
			}
			else {
				dp[i][j] = (dp[i - 1][j - 1] + dp[i - 1][j]) % kMod;
			}
		}
	}

	return dp[n][r];
}

int main() {
	long long n;
	int m;
	cin >> n >> m;

	int r = (n / 1000) % m;
	cout << CalcCombination(m, r) << endl;

	return 0;
}
0