結果

問題 No.129 お年玉(2)
ユーザー machymachy
提出日時 2015-06-16 21:58:29
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 708 bytes
コンパイル時間 737 ms
コンパイル使用メモリ 78,952 KB
実行使用メモリ 785,024 KB
最終ジャッジ日時 2024-07-07 03:22:51
合計ジャッジ時間 15,115 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
14,720 KB
testcase_01 MLE -
testcase_02 AC 7 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 327 ms
270,592 KB
testcase_06 AC 255 ms
219,392 KB
testcase_07 AC 470 ms
400,128 KB
testcase_08 AC 468 ms
384,896 KB
testcase_09 AC 226 ms
194,432 KB
testcase_10 AC 528 ms
455,040 KB
testcase_11 AC 266 ms
231,168 KB
testcase_12 AC 33 ms
30,080 KB
testcase_13 AC 24 ms
21,760 KB
testcase_14 AC 259 ms
223,616 KB
testcase_15 AC 228 ms
190,336 KB
testcase_16 AC 308 ms
264,704 KB
testcase_17 AC 201 ms
168,576 KB
testcase_18 AC 463 ms
398,848 KB
testcase_19 MLE -
testcase_20 AC 386 ms
331,520 KB
testcase_21 AC 244 ms
209,536 KB
testcase_22 AC 315 ms
271,488 KB
testcase_23 AC 527 ms
447,616 KB
testcase_24 MLE -
testcase_25 AC 253 ms
218,112 KB
testcase_26 AC 370 ms
318,848 KB
testcase_27 AC 350 ms
295,552 KB
testcase_28 AC 402 ms
343,808 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 3 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 3 ms
6,944 KB
testcase_34 AC 3 ms
6,944 KB
testcase_35 AC 3 ms
6,944 KB
testcase_36 AC 5 ms
6,944 KB
testcase_37 AC 4 ms
6,944 KB
testcase_38 AC 44 ms
38,912 KB
testcase_39 AC 46 ms
40,320 KB
testcase_40 AC 127 ms
109,440 KB
testcase_41 AC 162 ms
141,056 KB
testcase_42 AC 74 ms
64,640 KB
testcase_43 AC 17 ms
15,488 KB
testcase_44 MLE -
testcase_45 AC 40 ms
35,968 KB
testcase_46 AC 21 ms
18,816 KB
testcase_47 MLE -
testcase_48 AC 466 ms
397,056 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<vector<LL> > dp(n+1, vector<LL>(m+1));
    dp[0][0] = 1;
    for(int i = 0; i < n; i++){
        for(int j = 0; j <= m; j++){
            dp[i+1][j] += dp[i][j];
            dp[i+1][j] %= MOD;
        }
        for(int j = 0; j < m; j++){
            dp[i+1][j+1] += dp[i][j];
            dp[i+1][j+1] %= MOD;
        }
    }
    return dp[n][m];
}

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