結果

問題 No.129 お年玉(2)
ユーザー ant2357ant2357
提出日時 2017-04-05 00:27:21
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 218 ms / 5,000 ms
コード長 1,219 bytes
コンパイル時間 1,638 ms
コンパイル使用メモリ 166,424 KB
実行使用メモリ 236,800 KB
最終ジャッジ日時 2024-11-28 00:48:29
合計ジャッジ時間 7,879 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
21,888 KB
testcase_01 AC 218 ms
236,800 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 92 ms
108,416 KB
testcase_06 AC 145 ms
162,432 KB
testcase_07 AC 179 ms
194,816 KB
testcase_08 AC 123 ms
138,368 KB
testcase_09 AC 161 ms
180,992 KB
testcase_10 AC 184 ms
201,088 KB
testcase_11 AC 117 ms
133,376 KB
testcase_12 AC 152 ms
169,088 KB
testcase_13 AC 161 ms
176,256 KB
testcase_14 AC 156 ms
170,624 KB
testcase_15 AC 126 ms
143,488 KB
testcase_16 AC 144 ms
160,768 KB
testcase_17 AC 174 ms
191,360 KB
testcase_18 AC 165 ms
181,248 KB
testcase_19 AC 175 ms
192,128 KB
testcase_20 AC 172 ms
190,848 KB
testcase_21 AC 209 ms
232,192 KB
testcase_22 AC 126 ms
139,776 KB
testcase_23 AC 188 ms
206,592 KB
testcase_24 AC 183 ms
199,296 KB
testcase_25 AC 119 ms
134,016 KB
testcase_26 AC 123 ms
136,832 KB
testcase_27 AC 118 ms
133,376 KB
testcase_28 AC 218 ms
234,112 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 1 ms
5,248 KB
testcase_33 AC 4 ms
7,680 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 5 ms
7,168 KB
testcase_36 AC 4 ms
7,680 KB
testcase_37 AC 6 ms
8,448 KB
testcase_38 AC 29 ms
37,248 KB
testcase_39 AC 43 ms
51,968 KB
testcase_40 AC 109 ms
125,696 KB
testcase_41 AC 70 ms
81,792 KB
testcase_42 AC 33 ms
40,960 KB
testcase_43 AC 36 ms
40,448 KB
testcase_44 AC 216 ms
235,008 KB
testcase_45 AC 19 ms
26,368 KB
testcase_46 AC 46 ms
57,088 KB
testcase_47 AC 210 ms
228,224 KB
testcase_48 AC 139 ms
145,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

#define ALL(a) (a).begin(),(a).end()
#define SORT(c) sort((c).begin(),(c).end())
#define DESCSORT(c) sort(c.begin(), c.end(), greater<int>())

using namespace std;

using LL = long long int;
using LD = long double;

using pii = pair<int, int>;
using pll = pair<LL, LL>;
using pdd = pair<double, double>;
using vi = vector<int>;
using vvi = vector<vi>;
using vvvi = vector<vvi>;
using vl = vector<LL>;
using vvl = vector<vl>;
using vvvl = vector<vvl>;
using vd = vector<double>;
using vvd = vector<vd>;
using vs = vector<string>;
using vb = vector<bool>;
using vvb = vector<vb>;

const int INF = (1 << 30) - 1;
const LL INF64 = ((LL)1 << 62) - 1;
const double PI = 3.1415926535897932384626433832795;

const int dy[] = { 0, 1, 0, -1 };
const int dx[] = { 1, 0, -1, 0 };

int gcd(int x, int y) { return y ? gcd(y, x % y) : x; }
LL gcd(LL x, LL y) { return y ? gcd(y, x % y) : x; }

int dp[10001][10001];
int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	
	LL n, m;
	cin >> n >> m;
	n /= 1000;

	for (int i = 0; i <= m; i++) {
		dp[i][0] = 1;
		for (int j = 1; j <= i; j++) {
			dp[i][j] = (dp[i - 1][j - 1] + dp[i - 1][j]) % 1000000000;
		}
	}

	cout << dp[m][n % m] << endl;
	return 0;
}
0