結果

問題 No.129 お年玉(2)
ユーザー FF256grhyFF256grhy
提出日時 2017-06-16 15:19:35
言語 C++11
(gcc 13.3.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,857 bytes
コンパイル時間 1,469 ms
コンパイル使用メモリ 159,052 KB
実行使用メモリ 753,192 KB
最終ジャッジ日時 2024-11-28 00:52:59
合計ジャッジ時間 10,583 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
31,616 KB
testcase_01 MLE -
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 150 ms
187,904 KB
testcase_06 AC 244 ms
288,640 KB
testcase_07 AC 294 ms
350,208 KB
testcase_08 AC 200 ms
243,840 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 193 ms
234,368 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 204 ms
253,312 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 199 ms
246,400 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 1 ms
5,248 KB
testcase_33 AC 5 ms
8,960 KB
testcase_34 AC 3 ms
5,760 KB
testcase_35 AC 4 ms
8,192 KB
testcase_36 AC 5 ms
8,832 KB
testcase_37 AC 6 ms
9,984 KB
testcase_38 AC 42 ms
57,984 KB
testcase_39 AC 64 ms
84,352 KB
testcase_40 MLE -
testcase_41 AC 110 ms
138,624 KB
testcase_42 AC 49 ms
64,768 KB
testcase_43 AC 49 ms
63,744 KB
testcase_44 MLE -
testcase_45 AC 28 ms
38,912 KB
testcase_46 AC 72 ms
93,056 KB
testcase_47 MLE -
testcase_48 MLE -
権限があれば一括ダウンロードができます

ソースコード

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