結果

問題 No.129 お年玉(2)
ユーザー tubo28tubo28
提出日時 2015-01-17 01:35:23
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 987 ms / 5,000 ms
コード長 1,580 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 65,436 KB
実行使用メモリ 212,992 KB
最終ジャッジ日時 2024-05-05 21:39:36
合計ジャッジ時間 19,291 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
28,288 KB
testcase_01 AC 64 ms
83,840 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 325 ms
97,920 KB
testcase_06 AC 522 ms
151,808 KB
testcase_07 AC 757 ms
184,704 KB
testcase_08 AC 321 ms
101,632 KB
testcase_09 AC 714 ms
173,824 KB
testcase_10 AC 830 ms
189,696 KB
testcase_11 AC 400 ms
127,232 KB
testcase_12 AC 252 ms
97,280 KB
testcase_13 AC 196 ms
90,624 KB
testcase_14 AC 580 ms
160,512 KB
testcase_15 AC 442 ms
136,832 KB
testcase_16 AC 413 ms
141,184 KB
testcase_17 AC 773 ms
179,072 KB
testcase_18 AC 739 ms
173,952 KB
testcase_19 AC 550 ms
145,152 KB
testcase_20 AC 562 ms
167,424 KB
testcase_21 AC 987 ms
212,992 KB
testcase_22 AC 489 ms
138,240 KB
testcase_23 AC 847 ms
195,456 KB
testcase_24 AC 337 ms
113,664 KB
testcase_25 AC 362 ms
122,368 KB
testcase_26 AC 522 ms
131,840 KB
testcase_27 AC 498 ms
131,840 KB
testcase_28 AC 784 ms
205,952 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 5 ms
7,168 KB
testcase_35 AC 7 ms
9,216 KB
testcase_36 AC 9 ms
10,368 KB
testcase_37 AC 10 ms
11,264 KB
testcase_38 AC 76 ms
43,776 KB
testcase_39 AC 145 ms
59,520 KB
testcase_40 AC 481 ms
125,440 KB
testcase_41 AC 246 ms
87,040 KB
testcase_42 AC 109 ms
48,768 KB
testcase_43 AC 86 ms
42,240 KB
testcase_44 AC 751 ms
177,280 KB
testcase_45 AC 54 ms
33,280 KB
testcase_46 AC 118 ms
52,608 KB
testcase_47 AC 921 ms
205,440 KB
testcase_48 AC 387 ms
112,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cstdio>
#include <cstring>
#include <ctime>
#include <string>
#include <vector>
#include <algorithm>
#include <cmath>
#include <sstream>
#include <utility>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef pair<int,int> pii;
#define all(c) (c).begin(), (c).end()
#define loop(i,a,b) for(ll i=a; i<ll(b); i++)
#define rep(i,b) loop(i,0,b)
#define each(e,c) for(auto&e:c)
#define pb push_back
#define eb emplace_back
#define mp make_pair
#define mt make_tuple
#define lb lower_bound
#define ub upper_bound
#ifdef DEBUG
#define dump(...) (cerr<<#__VA_ARGS__<<" = "<<(DUMP(),__VA_ARGS__).str()<<" ["<<__LINE__<<"]"<<endl)
struct DUMP:ostringstream{template<class T>DUMP &operator,(const T&t){if(this->tellp())*this<<", ";*this<<t;return *this;}};
#else
#define dump(...)
#endif
template<class T> ostream& operator<<(ostream& os, vector<T> const& v){
    rep(i,v.size()) os << v[i] << (i+1==v.size()?"":" ");
    return os;
}

const ll mod = 1000000000;
const int MAX_N = 10000;

// nCr % mod
ll nCr(int n, int r){
    static bool done[MAX_N+1][MAX_N/2+2];
    static ll dp[MAX_N+1][MAX_N/2+2];
    if (n < 0 || r < 0 || n < r) return 0;
    if (r==0) return 1;
    if (r > n-r) r = n-r;
    ll &res = dp[n][r];
    if (done[n][r]) return res;
    done[n][r] = true;
    return res = (nCr(n-1,r-1) + nCr(n-1,r))%mod;
}

int main(){
    ll N,M;
    while(cin>>N>>M){
        N/=1000;
        ll rem = N-N/M*M;
        dump(M,rem);
        cout << nCr(M,rem) << endl;
    }
}
0