結果

問題 No.129 お年玉(2)
ユーザー lapilapi
提出日時 2019-07-07 19:59:59
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 841 bytes
コンパイル時間 1,017 ms
コンパイル使用メモリ 108,148 KB
実行使用メモリ 769,008 KB
最終ジャッジ日時 2024-12-20 09:26:55
合計ジャッジ時間 11,561 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
31,616 KB
testcase_01 MLE -
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 189 ms
195,608 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 AC 3 ms
6,816 KB
testcase_30 AC 3 ms
6,816 KB
testcase_31 AC 3 ms
7,656 KB
testcase_32 AC 4 ms
6,820 KB
testcase_33 AC 16 ms
64,864 KB
testcase_34 AC 10 ms
36,236 KB
testcase_35 AC 16 ms
58,752 KB
testcase_36 AC 16 ms
64,904 KB
testcase_37 AC 18 ms
73,084 KB
testcase_38 AC 71 ms
257,420 KB
testcase_39 AC 90 ms
320,928 KB
testcase_40 MLE -
testcase_41 AC 129 ms
425,476 KB
testcase_42 AC 75 ms
275,884 KB
testcase_43 AC 74 ms
273,660 KB
testcase_44 MLE -
testcase_45 AC 52 ms
202,160 KB
testcase_46 AC 96 ms
339,484 KB
testcase_47 MLE -
testcase_48 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <stack>
#include <queue>
#include <list>
#include <set>
#include <map>
#include <numeric>
#include <regex>
#include <tuple>
#include <iomanip>
#include <cmath>
using namespace std;

typedef long long ll;
typedef pair<int, int> P;
#define MOD 1000000007 // 10^9 + 7
#define INF 1000000000 // 10^9
#define LLINF 1LL<<60

ll Com[10009][10009]; // C[n][k] = nCk

void combination_table(int N) {
	for (int i = 0; i <= N; i++) {
		for (int j = 0; j <= i; j++) {
			if (j == 0 || j == i) Com[i][j] = 1LL;
			else Com[i][j] = (Com[i - 1][j] + Com[i - 1][j - 1]) % INF;
		}
	}
}


int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	ll N, M; cin >> N >> M;
	N /= 1000;
	N = N % M;
	combination_table(M);

	cout << Com[M][min(N, M - N)] << endl;

	return 0;
}
0