結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
12,928 KB
testcase_01 AC 268 ms
198,912 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 109 ms
83,072 KB
testcase_06 AC 174 ms
130,176 KB
testcase_07 AC 212 ms
158,976 KB
testcase_08 AC 143 ms
109,184 KB
testcase_09 AC 195 ms
146,688 KB
testcase_10 AC 218 ms
164,736 KB
testcase_11 AC 137 ms
104,704 KB
testcase_12 AC 180 ms
136,192 KB
testcase_13 AC 191 ms
142,592 KB
testcase_14 AC 181 ms
137,728 KB
testcase_15 AC 151 ms
113,536 KB
testcase_16 AC 170 ms
128,896 KB
testcase_17 AC 208 ms
156,032 KB
testcase_18 AC 195 ms
147,072 KB
testcase_19 AC 207 ms
156,928 KB
testcase_20 AC 206 ms
155,776 KB
testcase_21 AC 258 ms
194,432 KB
testcase_22 AC 144 ms
110,208 KB
testcase_23 AC 225 ms
169,856 KB
testcase_24 AC 217 ms
163,200 KB
testcase_25 AC 138 ms
105,216 KB
testcase_26 AC 145 ms
107,904 KB
testcase_27 AC 137 ms
104,704 KB
testcase_28 AC 262 ms
196,224 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 4 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 3 ms
5,248 KB
testcase_36 AC 3 ms
5,248 KB
testcase_37 AC 4 ms
5,248 KB
testcase_38 AC 29 ms
24,192 KB
testcase_39 AC 45 ms
35,712 KB
testcase_40 AC 128 ms
97,792 KB
testcase_41 AC 78 ms
60,288 KB
testcase_42 AC 34 ms
27,136 KB
testcase_43 AC 33 ms
26,624 KB
testcase_44 AC 261 ms
197,248 KB
testcase_45 AC 19 ms
16,256 KB
testcase_46 AC 49 ms
39,552 KB
testcase_47 AC 253 ms
190,592 KB
testcase_48 AC 152 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