結果

問題 No.129 お年玉(2)
ユーザー aaaaaa
提出日時 2018-11-23 19:17:33
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 353 ms / 5,000 ms
コード長 1,781 bytes
コンパイル時間 769 ms
コンパイル使用メモリ 94,144 KB
実行使用メモリ 435,332 KB
最終ジャッジ日時 2024-11-28 01:13:03
合計ジャッジ時間 18,086 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 331 ms
433,280 KB
testcase_01 AC 330 ms
435,032 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 339 ms
435,280 KB
testcase_04 AC 340 ms
435,052 KB
testcase_05 AC 333 ms
435,040 KB
testcase_06 AC 342 ms
435,188 KB
testcase_07 AC 334 ms
435,112 KB
testcase_08 AC 334 ms
435,204 KB
testcase_09 AC 335 ms
435,088 KB
testcase_10 AC 334 ms
435,096 KB
testcase_11 AC 339 ms
435,148 KB
testcase_12 AC 344 ms
435,032 KB
testcase_13 AC 335 ms
435,096 KB
testcase_14 AC 335 ms
435,036 KB
testcase_15 AC 336 ms
435,152 KB
testcase_16 AC 336 ms
435,276 KB
testcase_17 AC 334 ms
435,052 KB
testcase_18 AC 334 ms
435,316 KB
testcase_19 AC 334 ms
435,160 KB
testcase_20 AC 343 ms
435,208 KB
testcase_21 AC 331 ms
435,076 KB
testcase_22 AC 331 ms
435,156 KB
testcase_23 AC 336 ms
435,184 KB
testcase_24 AC 333 ms
435,164 KB
testcase_25 AC 331 ms
435,060 KB
testcase_26 AC 338 ms
435,200 KB
testcase_27 AC 333 ms
435,036 KB
testcase_28 AC 331 ms
435,108 KB
testcase_29 AC 338 ms
435,092 KB
testcase_30 AC 339 ms
435,068 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 349 ms
435,116 KB
testcase_33 AC 337 ms
435,032 KB
testcase_34 AC 332 ms
435,040 KB
testcase_35 AC 336 ms
435,052 KB
testcase_36 AC 341 ms
435,276 KB
testcase_37 AC 333 ms
435,048 KB
testcase_38 AC 343 ms
435,236 KB
testcase_39 AC 338 ms
435,076 KB
testcase_40 AC 332 ms
435,092 KB
testcase_41 AC 342 ms
435,112 KB
testcase_42 AC 344 ms
435,108 KB
testcase_43 AC 353 ms
435,204 KB
testcase_44 AC 347 ms
435,104 KB
testcase_45 AC 335 ms
435,232 KB
testcase_46 AC 335 ms
435,040 KB
testcase_47 AC 335 ms
435,228 KB
testcase_48 AC 341 ms
435,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include <bits/stdc++.h>
#include <stdio.h>
#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
#include <functional>
#include <map>
#include <iomanip>
#include <math.h> 
#include <stack>
#include <queue>
#include <bitset>
#include <cstdlib>
#include <tuple>
#include <cctype>
#include <ctype.h>
#include <set>
#include <sstream>
#include <time.h>
using namespace std;
//#define int long long
#define rep(i,s,n) for(int i = s;i<n;i++)
#define repe(i,s,n) for(int i = s;i<=n;i++)
#define rrep(i,s,n) for(int i = (n)-1;i>=(s);i--)
#define all(v) (v).begin(),(v).end()
#define pb push_back
#define fi first
#define se second
#define chmin(a,b) a=min((a),(b))
#define chmax(a,b) a=max((a),(b))
//typedef long long ll;
typedef long  ll;
typedef pair<int, int>pint;
typedef vector<int>vint;
typedef vector<pint>vpint;
typedef pair<pint, int> P1;
typedef pair<int, pint> P2;
typedef pair<pint, pint> PP;
static const ll maxLL = (ll)1 << 62;
//const ll MOD = 1000000007;
const ll MOD = 1000000000;
const ll INF = 1e18;
int ca[12] = { 31,28,31,30,31,30,31,31,30,31,30,31 };


ll a[10001][10001];
int func(ll nn, ll mm) {
	ll i, j, m = 1e9;
	ll n;
	for (i = 0; i <= 1e4; i++)for (j = 0; j <= i; j++) {
		if (j == 0)a[i][j] = 1;
		else a[i][j] = (a[i - 1][j] + a[i - 1][j - 1]) % m;
		//j==iのときa[i-1][j]は0
	}

	cout << a[nn][mm] << endl;
	return 0;
}

int main() {
	ll N, K;
	cin >> N >> K;

	if (K * 1000 >= N) {
		ll num1 = (N / 1000);
		func(K, num1);

	}
	else if (N % (K * 1000) == 0) {
		cout << 1 << endl;
	}
	else {
		ll num1 = (N % (1000 * K)) / 1000;

		clock_t start = clock();
		func(K, num1);
		clock_t end = clock();
		//std::cout << "duration = " << (double)(end - start) / CLOCKS_PER_SEC << "sec.\n";
	}

	getchar();
	getchar();
	return 0;
}
0