結果

問題 No.129 お年玉(2)
ユーザー ant2357ant2357
提出日時 2017-04-05 00:27:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 217 ms / 5,000 ms
コード長 1,219 bytes
コンパイル時間 1,570 ms
コンパイル使用メモリ 166,232 KB
実行使用メモリ 236,748 KB
最終ジャッジ日時 2024-05-05 23:18:50
合計ジャッジ時間 7,407 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
21,888 KB
testcase_01 AC 217 ms
236,748 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 89 ms
108,544 KB
testcase_06 AC 139 ms
162,176 KB
testcase_07 AC 180 ms
194,816 KB
testcase_08 AC 124 ms
138,240 KB
testcase_09 AC 156 ms
180,736 KB
testcase_10 AC 174 ms
200,960 KB
testcase_11 AC 112 ms
133,248 KB
testcase_12 AC 146 ms
168,960 KB
testcase_13 AC 151 ms
176,000 KB
testcase_14 AC 148 ms
170,624 KB
testcase_15 AC 120 ms
143,360 KB
testcase_16 AC 135 ms
160,768 KB
testcase_17 AC 166 ms
191,232 KB
testcase_18 AC 158 ms
181,376 KB
testcase_19 AC 173 ms
192,256 KB
testcase_20 AC 171 ms
191,104 KB
testcase_21 AC 209 ms
232,064 KB
testcase_22 AC 117 ms
139,776 KB
testcase_23 AC 182 ms
206,592 KB
testcase_24 AC 178 ms
199,168 KB
testcase_25 AC 111 ms
134,016 KB
testcase_26 AC 114 ms
136,960 KB
testcase_27 AC 110 ms
133,248 KB
testcase_28 AC 208 ms
234,112 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 5 ms
7,680 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 4 ms
7,168 KB
testcase_36 AC 4 ms
7,552 KB
testcase_37 AC 5 ms
8,448 KB
testcase_38 AC 28 ms
37,120 KB
testcase_39 AC 40 ms
52,096 KB
testcase_40 AC 102 ms
125,440 KB
testcase_41 AC 68 ms
81,792 KB
testcase_42 AC 31 ms
41,088 KB
testcase_43 AC 30 ms
40,448 KB
testcase_44 AC 210 ms
235,136 KB
testcase_45 AC 20 ms
26,368 KB
testcase_46 AC 48 ms
56,832 KB
testcase_47 AC 198 ms
228,224 KB
testcase_48 AC 123 ms
145,280 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