結果

問題 No.129 お年玉(2)
ユーザー face4face4
提出日時 2018-08-27 14:40:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 781 bytes
コンパイル時間 740 ms
コンパイル使用メモリ 72,864 KB
実行使用メモリ 785,024 KB
最終ジャッジ日時 2024-07-01 04:08:38
合計ジャッジ時間 27,497 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
41,856 KB
testcase_01 MLE -
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 468 ms
321,408 KB
testcase_06 AC 732 ms
510,080 KB
testcase_07 MLE -
testcase_08 AC 613 ms
425,728 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 589 ms
408,064 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 638 ms
443,392 KB
testcase_16 AC 729 ms
504,832 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 620 ms
430,464 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 595 ms
410,624 KB
testcase_26 AC 604 ms
420,736 KB
testcase_27 AC 586 ms
407,936 KB
testcase_28 MLE -
testcase_29 AC 3 ms
6,944 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 3 ms
6,944 KB
testcase_32 AC 3 ms
6,940 KB
testcase_33 AC 9 ms
7,808 KB
testcase_34 AC 4 ms
6,940 KB
testcase_35 AC 8 ms
7,168 KB
testcase_36 AC 9 ms
7,936 KB
testcase_37 AC 11 ms
9,344 KB
testcase_38 AC 122 ms
86,272 KB
testcase_39 AC 186 ms
132,608 KB
testcase_40 AC 550 ms
380,928 KB
testcase_41 AC 333 ms
230,784 KB
testcase_42 AC 137 ms
98,176 KB
testcase_43 AC 136 ms
96,512 KB
testcase_44 MLE -
testcase_45 AC 77 ms
53,888 KB
testcase_46 AC 209 ms
148,480 KB
testcase_47 MLE -
testcase_48 AC 644 ms
449,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;

typedef long long ll;
ll mod = 1e9;

struct Combination{
    int n;
    vector<vector<ll>> dp;

    Combination(int i){
        n = i;
        dp = vector<vector<ll>>(n+1, vector<ll>(n+1, 0));
        constructTriangle();
    }

    void constructTriangle(){
        dp[0][0] = 1;
        for(int i = 1; i <= n; i++){
            dp[i][0] = dp[i-1][0];
            for(int j = 1; j <= i; j++){
                dp[i][j] = (dp[i-1][j] + dp[i-1][j-1]) % mod;
            }
        }
    }

    // return aCb
    ll getCombination(int a, int b){
        return dp[a][b];
    }
};

int main(){
    ll n, m;
    cin >> n >> m;

    n /= 1000;

    Combination c(m);

    cout << c.getCombination(m, n%m) << endl;

    return 0;
}
0