結果

問題 No.129 お年玉(2)
ユーザー FF256grhyFF256grhy
提出日時 2017-06-16 15:19:35
言語 C++11
(gcc 11.4.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,857 bytes
コンパイル時間 1,842 ms
コンパイル使用メモリ 159,296 KB
実行使用メモリ 648,880 KB
最終ジャッジ日時 2024-05-05 23:25:16
合計ジャッジ時間 11,227 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
31,616 KB
testcase_01 AC 391 ms
433,152 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 161 ms
187,904 KB
testcase_06 AC 248 ms
288,768 KB
testcase_07 AC 289 ms
350,336 KB
testcase_08 AC 201 ms
243,968 KB
testcase_09 AC 274 ms
323,712 KB
testcase_10 AC 303 ms
362,240 KB
testcase_11 AC 195 ms
234,496 KB
testcase_12 AC 253 ms
301,696 KB
testcase_13 AC 255 ms
314,752 KB
testcase_14 AC 247 ms
304,512 KB
testcase_15 AC 203 ms
253,312 KB
testcase_16 AC 239 ms
285,952 KB
testcase_17 AC 278 ms
343,808 KB
testcase_18 AC 268 ms
324,736 KB
testcase_19 AC 318 ms
345,472 KB
testcase_20 AC 284 ms
343,040 KB
testcase_21 MLE -
testcase_22 AC 204 ms
246,528 KB
testcase_23 MLE -
testcase_24 AC 288 ms
358,784 KB
testcase_25 AC 191 ms
235,904 KB
testcase_26 AC 205 ms
241,152 KB
testcase_27 AC 203 ms
234,368 KB
testcase_28 MLE -
testcase_29 AC 1 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 6 ms
8,704 KB
testcase_34 AC 3 ms
6,016 KB
testcase_35 AC 5 ms
8,192 KB
testcase_36 AC 6 ms
8,832 KB
testcase_37 AC 6 ms
10,112 KB
testcase_38 AC 48 ms
57,856 KB
testcase_39 AC 69 ms
84,480 KB
testcase_40 AC 215 ms
219,776 KB
testcase_41 AC 114 ms
138,752 KB
testcase_42 AC 50 ms
64,896 KB
testcase_43 AC 49 ms
63,872 KB
testcase_44 MLE -
testcase_45 AC 31 ms
38,912 KB
testcase_46 AC 79 ms
93,056 KB
testcase_47 MLE -
testcase_48 AC 213 ms
256,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long   signed int LL;
typedef long long unsigned int LU;

#define incID(i, l, r) for(int i = (l)    ; i <  (r); i++)
#define incII(i, l, r) for(int i = (l)    ; i <= (r); i++)
#define decID(i, l, r) for(int i = (r) - 1; i >= (l); i--)
#define decII(i, l, r) for(int i = (r)    ; i >= (l); i--)
#define  inc(i, n) incID(i, 0, n)
#define inc1(i, n) incII(i, 1, n)
#define  dec(i, n) decID(i, 0, n)
#define dec1(i, n) decII(i, 1, n)

#define inII(v, l, r) ((l) <= (v) && (v) <= (r))
#define inID(v, l, r) ((l) <= (v) && (v) <  (r))

#define PB push_back
#define EB emplace_back
#define MP make_pair
#define FI first
#define SE second
#define UB upper_bound
#define LB lower_bound
#define PQ priority_queue

#define  ALL(v)  v.begin(),  v.end()
#define RALL(v) v.rbegin(), v.rend()
#define  FOR(it, v) for(auto it =  v.begin(); it !=  v.end(); ++it)
#define RFOR(it, v) for(auto it = v.rbegin(); it != v.rend(); ++it)

template<typename T> bool   setmin(T & a, T b) { if(b <  a) { a = b; return true; } else { return false; } }
template<typename T> bool   setmax(T & a, T b) { if(b >  a) { a = b; return true; } else { return false; } }
template<typename T> bool setmineq(T & a, T b) { if(b <= a) { a = b; return true; } else { return false; } }
template<typename T> bool setmaxeq(T & a, T b) { if(b >= a) { a = b; return true; } else { return false; } }
template<typename T> T gcd(T a, T b) { return (b == 0 ? a : gcd(b, a % b)); }
template<typename T> T lcm(T a, T b) { return a / gcd(a, b) * b; }

// ---- ----

LL n, m, dp[10001][10001];

LL comb(LL a, LL b) {
	LL MOD = 1e9;
	incII(i, 0, a) {
	incII(j, 0, i) {
		dp[i][j] = (i == 0 ? 1 : dp[i - 1][j - 1] + dp[i - 1][j]) % MOD;
	}
	}
	return dp[a][b];
}

int main() {
	cin >> n >> m;
	
	n /= 1000;
	cout << comb(m, n % m) << endl;
	
	return 0;
}
0