結果

問題 No.129 お年玉(2)
ユーザー nksk38nksk38
提出日時 2017-07-16 15:25:34
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,175 ms / 5,000 ms
コード長 940 bytes
コンパイル時間 1,700 ms
コンパイル使用メモリ 79,004 KB
実行使用メモリ 433,024 KB
最終ジャッジ日時 2024-05-05 23:34:22
合計ジャッジ時間 19,950 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
31,616 KB
testcase_01 AC 749 ms
433,024 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 304 ms
187,904 KB
testcase_06 AC 471 ms
288,896 KB
testcase_07 AC 587 ms
350,208 KB
testcase_08 AC 398 ms
243,840 KB
testcase_09 AC 536 ms
323,840 KB
testcase_10 AC 601 ms
362,240 KB
testcase_11 AC 390 ms
234,368 KB
testcase_12 AC 498 ms
301,568 KB
testcase_13 AC 540 ms
314,880 KB
testcase_14 AC 530 ms
304,640 KB
testcase_15 AC 414 ms
253,440 KB
testcase_16 AC 468 ms
285,952 KB
testcase_17 AC 565 ms
343,808 KB
testcase_18 AC 532 ms
324,864 KB
testcase_19 AC 576 ms
345,472 KB
testcase_20 AC 568 ms
342,784 KB
testcase_21 AC 712 ms
423,808 KB
testcase_22 AC 404 ms
246,400 KB
testcase_23 AC 903 ms
372,992 KB
testcase_24 AC 1,175 ms
358,912 KB
testcase_25 AC 383 ms
235,648 KB
testcase_26 AC 396 ms
241,280 KB
testcase_27 AC 387 ms
234,240 KB
testcase_28 AC 717 ms
427,648 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 7 ms
8,832 KB
testcase_34 AC 4 ms
5,888 KB
testcase_35 AC 5 ms
8,192 KB
testcase_36 AC 6 ms
8,832 KB
testcase_37 AC 8 ms
10,112 KB
testcase_38 AC 80 ms
57,984 KB
testcase_39 AC 130 ms
84,224 KB
testcase_40 AC 353 ms
219,904 KB
testcase_41 AC 216 ms
138,624 KB
testcase_42 AC 95 ms
64,640 KB
testcase_43 AC 91 ms
63,872 KB
testcase_44 AC 729 ms
429,696 KB
testcase_45 AC 52 ms
39,040 KB
testcase_46 AC 142 ms
93,184 KB
testcase_47 AC 702 ms
416,256 KB
testcase_48 AC 422 ms
256,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<string>
#include<queue>
#include<vector>
#include<functional>
#include<cmath>
#include<map>
#include<stack>
#include<set>
#include<numeric>
#include<limits>

#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()

using namespace std;
typedef long long ll;
typedef pair<int, int> pi;
typedef pair<ll, ll> pl;
typedef pair<ll, string> pls;

ll mod = (ll)1e9;


ll C[10010][10010];

void comb_table(ll N) {
	for (ll i = 0; i <= N; i++) {
		for (ll j = 0; j <= i; j++) {
			if (j == 0 || j == i) {
				C[i][j] = 1LL;
			}
			else {
				C[i][j] = C[i - 1][j - 1] + C[i - 1][j];
				C[i][j] %= mod;
			}
		}
	}
}

int main()
{
	ll N, M,left;
	cin >> N >> M;
	comb_table(M);

	left = N;
	N /= 1000;

	ll ans;
	if (N >= M) {
		N /= M;
		left -= M * N * 1000;
		left /= 1000;
		ans = C[M][left];
	}
	else 
		ans = C[M][N];
	
	cout << ans << endl;

	return	0;
}
0