結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
21,888 KB
testcase_01 AC 672 ms
236,672 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 277 ms
108,544 KB
testcase_06 AC 449 ms
162,304 KB
testcase_07 AC 534 ms
194,816 KB
testcase_08 AC 367 ms
138,368 KB
testcase_09 AC 503 ms
180,736 KB
testcase_10 AC 555 ms
201,088 KB
testcase_11 AC 350 ms
133,376 KB
testcase_12 AC 465 ms
168,960 KB
testcase_13 AC 479 ms
176,128 KB
testcase_14 AC 463 ms
170,624 KB
testcase_15 AC 380 ms
143,360 KB
testcase_16 AC 441 ms
160,640 KB
testcase_17 AC 525 ms
191,232 KB
testcase_18 AC 494 ms
181,376 KB
testcase_19 AC 525 ms
192,128 KB
testcase_20 AC 523 ms
190,976 KB
testcase_21 AC 654 ms
231,936 KB
testcase_22 AC 371 ms
139,648 KB
testcase_23 AC 582 ms
206,720 KB
testcase_24 AC 548 ms
199,296 KB
testcase_25 AC 352 ms
134,144 KB
testcase_26 AC 364 ms
136,960 KB
testcase_27 AC 350 ms
133,376 KB
testcase_28 AC 660 ms
233,856 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 7 ms
7,552 KB
testcase_34 AC 5 ms
5,376 KB
testcase_35 AC 6 ms
7,424 KB
testcase_36 AC 7 ms
7,552 KB
testcase_37 AC 9 ms
8,576 KB
testcase_38 AC 77 ms
37,120 KB
testcase_39 AC 116 ms
51,840 KB
testcase_40 AC 330 ms
125,568 KB
testcase_41 AC 204 ms
81,920 KB
testcase_42 AC 89 ms
41,088 KB
testcase_43 AC 87 ms
40,448 KB
testcase_44 AC 667 ms
235,136 KB
testcase_45 AC 50 ms
26,240 KB
testcase_46 AC 130 ms
56,832 KB
testcase_47 AC 626 ms
228,224 KB
testcase_48 AC 369 ms
145,152 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