結果

問題 No.129 お年玉(2)
ユーザー かにかに
提出日時 2015-11-18 01:32:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 505 ms / 5,000 ms
コード長 1,719 bytes
コンパイル時間 1,593 ms
コンパイル使用メモリ 90,676 KB
実行使用メモリ 393,984 KB
最終ジャッジ日時 2024-05-05 22:51:32
合計ジャッジ時間 9,432 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
18,048 KB
testcase_01 AC 505 ms
393,984 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 193 ms
162,560 KB
testcase_06 AC 164 ms
143,744 KB
testcase_07 AC 282 ms
237,696 KB
testcase_08 AC 268 ms
223,616 KB
testcase_09 AC 150 ms
133,248 KB
testcase_10 AC 308 ms
265,600 KB
testcase_11 AC 170 ms
146,176 KB
testcase_12 AC 39 ms
49,792 KB
testcase_13 AC 33 ms
46,464 KB
testcase_14 AC 164 ms
146,688 KB
testcase_15 AC 145 ms
127,104 KB
testcase_16 AC 192 ms
166,272 KB
testcase_17 AC 130 ms
121,472 KB
testcase_18 AC 274 ms
235,392 KB
testcase_19 AC 370 ms
305,920 KB
testcase_20 AC 238 ms
202,752 KB
testcase_21 AC 161 ms
146,304 KB
testcase_22 AC 196 ms
167,040 KB
testcase_23 AC 313 ms
262,528 KB
testcase_24 AC 410 ms
340,736 KB
testcase_25 AC 155 ms
139,776 KB
testcase_26 AC 225 ms
190,464 KB
testcase_27 AC 211 ms
178,304 KB
testcase_28 AC 251 ms
213,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 4 ms
6,400 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 3 ms
6,400 KB
testcase_36 AC 4 ms
7,296 KB
testcase_37 AC 4 ms
7,552 KB
testcase_38 AC 34 ms
34,304 KB
testcase_39 AC 36 ms
38,272 KB
testcase_40 AC 89 ms
84,224 KB
testcase_41 AC 105 ms
93,824 KB
testcase_42 AC 51 ms
48,000 KB
testcase_43 AC 18 ms
23,424 KB
testcase_44 AC 455 ms
376,064 KB
testcase_45 AC 29 ms
29,824 KB
testcase_46 AC 22 ms
28,672 KB
testcase_47 AC 379 ms
324,864 KB
testcase_48 AC 280 ms
230,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#include <set>
#include <map>
#include <list>
#include <queue>
#include <stack>
#include <cmath>
#include <ctype.h>
#include <ctime>
#include <cstdio>
#include <vector>
#include <string>
#include <bitset>
#include <cctype>
#include <cstdlib>
#include <cstring>
#include <utility>
#include <numeric>
#include <complex>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <cassert>
#include <iostream>
#include <iterator>
#include <algorithm>
#define aLL(g) (g).begin(),(g).end()
#define REP(i, x, n) for(int i = x; i < n; i++)
#define rep(i,n) REP(i,0,n)
#define F(i,j,k) fill(i[0],i[0]+j*j,k)
#define P(p) cout<<(p)<<endl;
#define EXISt(s,e) ((s).find(e)!=(s).end())
#define INF 1<<25
#define MAX 100000000
#define pb push_back
#define mp make_pair
using namespace std;
typedef vector<int> vi;
typedef vector<long long> vl;
typedef vector<double> vd;
typedef pair<int, int> pii;
typedef pair<long, long> pll;
typedef pair<pair<int, int>, int> pp;
typedef long long ll;
int dx[] = { 0, 1, 0, -1 };
int dy[] = { -1, 0, 1, 0 };

int sttoi(std::string str) {
	int ret;
	std::stringstream ss; ss << str;
	ss >> ret;
	return ret;
}

bool sort_greater(const pair<string, int> &a, const pair<string, int> &b) {
	return a.second > b.second;
}
int gcd(int a, int b){
	if (b > a)swap(a, b);if (b == 0)return a;else{return gcd(b, a%b);}
}

int dp[10001][10001];

void solve() {
	ll n, m;
	cin >> n >> m;
	n /= 1000;
	n %= m;
	dp[0][1] = 1;
	dp[0][2] = 1;
	for (int i = 1; i < m; i++){
		for (int j = 1; j < n+10; j++){
			dp[i][j] = ((dp[i - 1][j - 1] % 1000000000) + (dp[i - 1][j] % 1000000000)) % 1000000000;
		}
	}
	P(dp[m-1][n+1]%1000000000);
}

int main() {
	solve();
	return 0;
}
0