結果

問題 No.129 お年玉(2)
ユーザー nksk38nksk38
提出日時 2017-07-16 15:25:34
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 835 ms / 5,000 ms
コード長 940 bytes
コンパイル時間 707 ms
コンパイル使用メモリ 79,224 KB
実行使用メモリ 433,152 KB
最終ジャッジ日時 2024-11-28 00:57:21
合計ジャッジ時間 18,921 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
31,360 KB
testcase_01 AC 835 ms
433,152 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 334 ms
187,904 KB
testcase_06 AC 489 ms
288,768 KB
testcase_07 AC 583 ms
350,080 KB
testcase_08 AC 412 ms
243,712 KB
testcase_09 AC 532 ms
323,712 KB
testcase_10 AC 637 ms
361,984 KB
testcase_11 AC 381 ms
234,496 KB
testcase_12 AC 499 ms
301,568 KB
testcase_13 AC 523 ms
314,752 KB
testcase_14 AC 506 ms
304,512 KB
testcase_15 AC 415 ms
253,312 KB
testcase_16 AC 482 ms
285,952 KB
testcase_17 AC 573 ms
343,552 KB
testcase_18 AC 549 ms
324,736 KB
testcase_19 AC 596 ms
345,472 KB
testcase_20 AC 576 ms
343,040 KB
testcase_21 AC 726 ms
423,680 KB
testcase_22 AC 403 ms
246,272 KB
testcase_23 AC 633 ms
372,864 KB
testcase_24 AC 604 ms
358,784 KB
testcase_25 AC 386 ms
235,520 KB
testcase_26 AC 399 ms
241,152 KB
testcase_27 AC 394 ms
234,240 KB
testcase_28 AC 731 ms
427,520 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 8 ms
8,704 KB
testcase_34 AC 4 ms
5,760 KB
testcase_35 AC 7 ms
8,192 KB
testcase_36 AC 8 ms
8,704 KB
testcase_37 AC 10 ms
9,984 KB
testcase_38 AC 81 ms
57,856 KB
testcase_39 AC 126 ms
84,096 KB
testcase_40 AC 377 ms
219,648 KB
testcase_41 AC 219 ms
138,752 KB
testcase_42 AC 96 ms
64,640 KB
testcase_43 AC 96 ms
63,744 KB
testcase_44 AC 732 ms
429,696 KB
testcase_45 AC 53 ms
39,040 KB
testcase_46 AC 140 ms
93,056 KB
testcase_47 AC 709 ms
416,000 KB
testcase_48 AC 415 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