結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
28,288 KB
testcase_01 AC 64 ms
83,968 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 315 ms
97,792 KB
testcase_06 AC 507 ms
151,808 KB
testcase_07 AC 748 ms
184,704 KB
testcase_08 AC 301 ms
101,504 KB
testcase_09 AC 704 ms
173,824 KB
testcase_10 AC 861 ms
189,696 KB
testcase_11 AC 381 ms
127,232 KB
testcase_12 AC 233 ms
97,280 KB
testcase_13 AC 191 ms
90,624 KB
testcase_14 AC 573 ms
160,640 KB
testcase_15 AC 450 ms
136,832 KB
testcase_16 AC 423 ms
141,184 KB
testcase_17 AC 765 ms
179,200 KB
testcase_18 AC 720 ms
173,824 KB
testcase_19 AC 563 ms
145,152 KB
testcase_20 AC 582 ms
167,296 KB
testcase_21 AC 991 ms
212,864 KB
testcase_22 AC 481 ms
138,240 KB
testcase_23 AC 832 ms
195,456 KB
testcase_24 AC 353 ms
113,664 KB
testcase_25 AC 421 ms
122,368 KB
testcase_26 AC 564 ms
131,840 KB
testcase_27 AC 500 ms
131,968 KB
testcase_28 AC 788 ms
205,696 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 1 ms
5,248 KB
testcase_34 AC 5 ms
7,040 KB
testcase_35 AC 6 ms
9,216 KB
testcase_36 AC 9 ms
10,240 KB
testcase_37 AC 9 ms
11,264 KB
testcase_38 AC 76 ms
43,648 KB
testcase_39 AC 139 ms
59,520 KB
testcase_40 AC 455 ms
125,440 KB
testcase_41 AC 222 ms
87,040 KB
testcase_42 AC 94 ms
48,896 KB
testcase_43 AC 76 ms
42,112 KB
testcase_44 AC 721 ms
177,408 KB
testcase_45 AC 51 ms
33,280 KB
testcase_46 AC 108 ms
52,736 KB
testcase_47 AC 924 ms
205,568 KB
testcase_48 AC 373 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