結果

問題 No.129 お年玉(2)
ユーザー tkmst201tkmst201
提出日時 2017-04-24 10:43:17
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 706 ms / 5,000 ms
コード長 905 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 157,940 KB
実行使用メモリ 236,800 KB
最終ジャッジ日時 2024-05-05 23:22:24
合計ジャッジ時間 18,839 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
21,888 KB
testcase_01 AC 698 ms
236,800 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 285 ms
108,416 KB
testcase_06 AC 445 ms
162,304 KB
testcase_07 AC 581 ms
194,688 KB
testcase_08 AC 370 ms
138,240 KB
testcase_09 AC 496 ms
180,736 KB
testcase_10 AC 559 ms
200,960 KB
testcase_11 AC 357 ms
133,376 KB
testcase_12 AC 471 ms
169,216 KB
testcase_13 AC 482 ms
175,872 KB
testcase_14 AC 468 ms
170,624 KB
testcase_15 AC 388 ms
143,616 KB
testcase_16 AC 438 ms
160,896 KB
testcase_17 AC 530 ms
191,360 KB
testcase_18 AC 497 ms
181,248 KB
testcase_19 AC 530 ms
192,256 KB
testcase_20 AC 528 ms
190,848 KB
testcase_21 AC 658 ms
231,936 KB
testcase_22 AC 377 ms
139,648 KB
testcase_23 AC 588 ms
206,464 KB
testcase_24 AC 706 ms
199,168 KB
testcase_25 AC 358 ms
134,144 KB
testcase_26 AC 377 ms
136,960 KB
testcase_27 AC 357 ms
133,376 KB
testcase_28 AC 666 ms
233,856 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 9 ms
7,680 KB
testcase_34 AC 5 ms
5,504 KB
testcase_35 AC 8 ms
7,168 KB
testcase_36 AC 9 ms
7,680 KB
testcase_37 AC 10 ms
8,448 KB
testcase_38 AC 84 ms
37,120 KB
testcase_39 AC 124 ms
51,840 KB
testcase_40 AC 347 ms
125,568 KB
testcase_41 AC 206 ms
81,792 KB
testcase_42 AC 94 ms
40,960 KB
testcase_43 AC 92 ms
40,576 KB
testcase_44 AC 670 ms
235,136 KB
testcase_45 AC 55 ms
26,368 KB
testcase_46 AC 132 ms
56,960 KB
testcase_47 AC 658 ms
228,352 KB
testcase_48 AC 390 ms
145,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define FOR(i,a,b) for(int i=(a);i<(b);i++)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()

template<typename A, typename B> inline bool chmax(A &a, B b) { if (a<b) { a=b; return 1; } return 0; }
template<typename A, typename B> inline bool chmin(A &a, B b) { if (a>b) { a=b; return 1; } return 0; }

typedef unsigned long long ull;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;

const ll INF = 1ll<<29;
const ll MOD = 1000000007;
const double EPS  = 1e-10;

int ncr[10001][10001];

void nCr(ll n, ll r, ll mod) {
	REP(i, n + 1) {
		REP(j, i + 1) {
			if (j == 0 || j == i) ncr[i][j] = 1;
			else ncr[i][j] = (ncr[i - 1][j - 1] + ncr[i - 1][j]) % mod;
		}
	}
}

int main() {
	ll mod = 1000000000;
	ll n, m;
	cin >> n >> m;
	
	nCr(m, m, mod);
	
	n /= 1000;
	n %= m;
	
	cout << ncr[m][n] << endl;
	
	return 0;
}
0