結果

問題 No.129 お年玉(2)
ユーザー machymachy
提出日時 2015-06-16 22:05:32
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 271 ms / 5,000 ms
コード長 801 bytes
コンパイル時間 711 ms
コンパイル使用メモリ 76,264 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-27 23:49:31
合計ジャッジ時間 5,188 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,816 KB
testcase_01 AC 271 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 93 ms
6,820 KB
testcase_06 AC 76 ms
6,820 KB
testcase_07 AC 136 ms
6,820 KB
testcase_08 AC 136 ms
6,820 KB
testcase_09 AC 67 ms
6,816 KB
testcase_10 AC 158 ms
6,820 KB
testcase_11 AC 80 ms
6,820 KB
testcase_12 AC 10 ms
6,816 KB
testcase_13 AC 9 ms
6,816 KB
testcase_14 AC 77 ms
6,816 KB
testcase_15 AC 65 ms
6,816 KB
testcase_16 AC 92 ms
6,816 KB
testcase_17 AC 59 ms
6,820 KB
testcase_18 AC 141 ms
6,820 KB
testcase_19 AC 186 ms
6,816 KB
testcase_20 AC 118 ms
6,820 KB
testcase_21 AC 72 ms
6,816 KB
testcase_22 AC 95 ms
6,816 KB
testcase_23 AC 159 ms
6,816 KB
testcase_24 AC 214 ms
6,816 KB
testcase_25 AC 78 ms
6,820 KB
testcase_26 AC 111 ms
6,820 KB
testcase_27 AC 104 ms
6,820 KB
testcase_28 AC 117 ms
6,820 KB
testcase_29 AC 1 ms
6,816 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 1 ms
6,820 KB
testcase_32 AC 1 ms
6,816 KB
testcase_33 AC 1 ms
6,816 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 13 ms
6,820 KB
testcase_39 AC 14 ms
6,816 KB
testcase_40 AC 39 ms
6,820 KB
testcase_41 AC 52 ms
6,820 KB
testcase_42 AC 22 ms
6,816 KB
testcase_43 AC 6 ms
6,816 KB
testcase_44 AC 235 ms
6,816 KB
testcase_45 AC 13 ms
6,816 KB
testcase_46 AC 7 ms
6,820 KB
testcase_47 AC 203 ms
6,816 KB
testcase_48 AC 143 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <cmath>
#include <iomanip>
#include <map>
using namespace std;
typedef long long LL;

const LL MOD=1000000000;

LL mod_comb(LL n, LL m){
    vector<LL> prev(m+1);
    vector<LL> next(m+1);
    prev[0] = 1;
    for(int i = 0; i < n; i++){
        for(int j = 0; j <= m; j++){
            next[j] += prev[j];
            next[j] %= MOD;
        }
        for(int j = 0; j < m; j++){
            next[j+1] += prev[j];
            next[j+1] %= MOD;
        }
        next.swap(prev);
        for(int i = 0; i < next.size(); i++){
            next[i] = 0;
        }
    }
    return prev[m];
}

int main(){
    LL N, M;
    cin >> N >> M;
    LL cnt = (N/1000) % M;
    cout << mod_comb(M, cnt) << endl;
    return 0;
}
0