結果

問題 No.129 お年玉(2)
ユーザー なおなお
提出日時 2015-01-16 23:35:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 562 ms / 5,000 ms
コード長 637 bytes
コンパイル時間 1,416 ms
コンパイル使用メモリ 164,804 KB
実行使用メモリ 101,164 KB
最終ジャッジ日時 2024-11-27 22:56:02
合計ジャッジ時間 11,948 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
8,448 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 138 ms
43,776 KB
testcase_06 AC 341 ms
67,584 KB
testcase_07 AC 445 ms
81,920 KB
testcase_08 AC 136 ms
56,832 KB
testcase_09 AC 403 ms
75,608 KB
testcase_10 AC 436 ms
84,864 KB
testcase_11 AC 254 ms
54,656 KB
testcase_12 AC 120 ms
70,400 KB
testcase_13 AC 101 ms
73,600 KB
testcase_14 AC 365 ms
71,168 KB
testcase_15 AC 284 ms
59,136 KB
testcase_16 AC 296 ms
66,680 KB
testcase_17 AC 392 ms
80,256 KB
testcase_18 AC 393 ms
75,992 KB
testcase_19 AC 241 ms
80,768 KB
testcase_20 AC 395 ms
80,256 KB
testcase_21 AC 514 ms
99,584 KB
testcase_22 AC 289 ms
57,216 KB
testcase_23 AC 470 ms
87,408 KB
testcase_24 AC 155 ms
83,968 KB
testcase_25 AC 239 ms
54,912 KB
testcase_26 AC 241 ms
56,192 KB
testcase_27 AC 251 ms
54,528 KB
testcase_28 AC 562 ms
100,608 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 4 ms
5,248 KB
testcase_37 AC 4 ms
5,248 KB
testcase_38 AC 44 ms
14,080 KB
testcase_39 AC 72 ms
19,840 KB
testcase_40 AC 234 ms
51,200 KB
testcase_41 AC 139 ms
32,256 KB
testcase_42 AC 53 ms
15,744 KB
testcase_43 AC 36 ms
15,360 KB
testcase_44 AC 330 ms
101,164 KB
testcase_45 AC 28 ms
9,984 KB
testcase_46 AC 51 ms
21,888 KB
testcase_47 AC 497 ms
97,792 KB
testcase_48 AC 166 ms
59,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MOD = (int)1e9;

ll N,M,W,H;
int combination_mod(int n, int m, int s=0){
    static vector<vector<int> > c;
    if(n<0||m<0||n<m)return 0;
    m=min(m,n-m);
    if((int)c.size()<=n)c.resize(n+1);
    if((int)c[n].size()==0) c[n].resize(n/2+1);
    if(c[n][m]!=0) return c[n][m];
    int res;
    if(n==0||m==0)res=1; else if(m==1)res=n;
    else res=(combination_mod(n-1,m,s+1)+combination_mod(n-1,m-1,s+1))%MOD;
    return(c[n][m]=res);
}

int main(){
    cin >> N >> M;
    N -= N/1000/M*1000*M;
    N = N/1000;

    cout << combination_mod(M,N) << endl;
}
0