結果

問題 No.129 お年玉(2)
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-02-26 16:36:45
言語 C++11
(gcc 11.4.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 984 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 74,372 KB
実行使用メモリ 750,960 KB
最終ジャッジ日時 2024-11-21 11:00:58
合計ジャッジ時間 19,949 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
168,092 KB
testcase_01 MLE -
testcase_02 AC 4 ms
6,820 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 367 ms
335,212 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,820 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 3 ms
7,540 KB
testcase_32 AC 3 ms
7,528 KB
testcase_33 AC 17 ms
63,000 KB
testcase_34 AC 10 ms
36,344 KB
testcase_35 AC 14 ms
58,736 KB
testcase_36 AC 16 ms
64,860 KB
testcase_37 AC 19 ms
73,040 KB
testcase_38 AC 106 ms
240,256 KB
testcase_39 AC 150 ms
268,372 KB
testcase_40 MLE -
testcase_41 AC 234 ms
322,204 KB
testcase_42 AC 117 ms
248,116 KB
testcase_43 AC 115 ms
247,424 KB
testcase_44 MLE -
testcase_45 AC 75 ms
202,124 KB
testcase_46 AC 164 ms
276,528 KB
testcase_47 MLE -
testcase_48 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <complex>
#include <queue>
#include <map>
using namespace std;

#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define FORR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n) for (int i=0;i<(n);i++)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
#define pb push_back
#define ALL(a) (a).begin(),(a).end()

#define EPS (1e-10)
#define EQ(a,b) (abs((a)-(b)) < EPS)

#define PI 3.1415926535

typedef long long ll;
typedef pair<int, int> P;
//typedef complex<double> C;

const int MAX_M = 10000;

ll mod = 1000000000;
ll N, M;
ll C[MAX_M + 1][MAX_M + 1];

void input() {
	cin >> N >> M;
}

void setPascal(int N) {
	REP(i, N + 1) {
		C[i][0] = C[i][i] = 1;
	}
	FOR(i, 1, N + 1) {
		FOR(j, 1, i) {
			C[i][j] = (C[i-1][j-1] + C[i-1][j]) % mod;
		}
	}
}

void solve() {
	N /= 1000;
	if (N == 0) {
		cout << 1 << endl;
		return;
	}
	int r = N % M;
	setPascal(M);
	cout << C[M][r] << endl;
}

int main() {
	input();
	solve();
}
0