結果

問題 No.129 お年玉(2)
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-01-02 17:37:37
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 364 ms / 5,000 ms
コード長 759 bytes
コンパイル時間 5,465 ms
コンパイル使用メモリ 312,420 KB
実行使用メモリ 394,496 KB
最終ジャッジ日時 2024-09-27 17:49:15
合計ジャッジ時間 14,738 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
22,528 KB
testcase_01 AC 364 ms
394,496 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 136 ms
162,560 KB
testcase_06 AC 222 ms
256,896 KB
testcase_07 AC 273 ms
314,880 KB
testcase_08 AC 185 ms
214,784 KB
testcase_09 AC 252 ms
289,792 KB
testcase_10 AC 287 ms
326,272 KB
testcase_11 AC 179 ms
205,952 KB
testcase_12 AC 235 ms
268,800 KB
testcase_13 AC 247 ms
281,472 KB
testcase_14 AC 238 ms
271,744 KB
testcase_15 AC 195 ms
223,616 KB
testcase_16 AC 225 ms
254,080 KB
testcase_17 AC 271 ms
308,736 KB
testcase_18 AC 254 ms
290,816 KB
testcase_19 AC 270 ms
310,272 KB
testcase_20 AC 270 ms
307,968 KB
testcase_21 AC 339 ms
385,152 KB
testcase_22 AC 189 ms
217,088 KB
testcase_23 AC 295 ms
336,384 KB
testcase_24 AC 285 ms
322,816 KB
testcase_25 AC 182 ms
207,104 KB
testcase_26 AC 186 ms
212,096 KB
testcase_27 AC 182 ms
205,696 KB
testcase_28 AC 348 ms
389,120 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 4 ms
6,944 KB
testcase_34 AC 3 ms
6,940 KB
testcase_35 AC 4 ms
6,944 KB
testcase_36 AC 4 ms
6,940 KB
testcase_37 AC 5 ms
6,944 KB
testcase_38 AC 39 ms
44,800 KB
testcase_39 AC 61 ms
68,096 KB
testcase_40 AC 171 ms
192,256 KB
testcase_41 AC 103 ms
117,248 KB
testcase_42 AC 45 ms
50,944 KB
testcase_43 AC 45 ms
50,048 KB
testcase_44 AC 347 ms
391,168 KB
testcase_45 AC 24 ms
28,672 KB
testcase_46 AC 67 ms
75,904 KB
testcase_47 AC 337 ms
377,728 KB
testcase_48 AC 199 ms
226,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>


using namespace std;
using namespace atcoder;
#define rep(i,m,n,k) for (int i = (int)(m); i < (int)(n); i += (int)(k))
#define rrep(i,m,n,k) for (int i = (int)(m); i > (int)(n); i += (int)(k))
#define ll long long
#define list(T,A,N) vector<T> A(N);for(int i=0;i<(int)(N);i++){cin >> A[i];}

const ll mod = 1000000000;
using mint = static_modint<1000000000>;




int main(){
    
    ll N,M;
    cin >> N >> M;
    N /= 1000;
    N %= M;
    vector<vector<mint>> C(M+1,vector<mint>(M+1,mint(0)));
    rep(i,0,M+1,1){
        C[i][0] = mint(1);
    }
    rep(i,1,M+1,1){
        rep(j,1,i+1,1){
            C[i][j] = C[i-1][j-1] + C[i-1][j];
        }
    }
    cout << C[M][N].val() << endl;
    return 0;


}
0