結果

問題 No.129 お年玉(2)
ユーザー dnishdnish
提出日時 2018-06-22 17:30:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 654 bytes
コンパイル時間 1,497 ms
コンパイル使用メモリ 166,236 KB
実行使用メモリ 792,576 KB
最終ジャッジ日時 2024-06-30 18:02:04
合計ジャッジ時間 19,321 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
23,680 KB
testcase_01 MLE -
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 431 ms
295,808 KB
testcase_06 AC 349 ms
251,392 KB
testcase_07 AC 617 ms
435,456 KB
testcase_08 AC 591 ms
414,208 KB
testcase_09 AC 310 ms
228,352 KB
testcase_10 AC 702 ms
491,008 KB
testcase_11 AC 362 ms
259,840 KB
testcase_12 AC 80 ms
62,848 KB
testcase_13 AC 69 ms
55,424 KB
testcase_14 AC 357 ms
256,384 KB
testcase_15 AC 302 ms
220,160 KB
testcase_16 AC 417 ms
296,832 KB
testcase_17 AC 280 ms
203,904 KB
testcase_18 AC 613 ms
432,640 KB
testcase_19 MLE -
testcase_20 AC 519 ms
366,720 KB
testcase_21 AC 342 ms
248,832 KB
testcase_22 AC 423 ms
300,544 KB
testcase_23 AC 690 ms
484,480 KB
testcase_24 MLE -
testcase_25 AC 340 ms
246,784 KB
testcase_26 AC 492 ms
347,648 KB
testcase_27 AC 459 ms
323,968 KB
testcase_28 AC 535 ms
382,976 KB
testcase_29 AC 2 ms
6,940 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 6 ms
6,944 KB
testcase_34 AC 5 ms
6,940 KB
testcase_35 AC 6 ms
6,944 KB
testcase_36 AC 9 ms
8,192 KB
testcase_37 AC 8 ms
8,064 KB
testcase_38 AC 71 ms
51,968 KB
testcase_39 AC 76 ms
56,704 KB
testcase_40 AC 189 ms
136,960 KB
testcase_41 AC 225 ms
162,688 KB
testcase_42 AC 109 ms
78,720 KB
testcase_43 AC 37 ms
29,440 KB
testcase_44 MLE -
testcase_45 AC 63 ms
46,208 KB
testcase_46 AC 45 ms
36,224 KB
testcase_47 MLE -
testcase_48 AC 604 ms
427,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#define REP(i,n,N) for(ll i=(n); i<(N); i++)
#define RREP(i,n,N) for(ll i=(N-1); i>=n; i--)
#define CK(n,a,b) ((a)<=(n)&&(n)<(b))
#define ALL(v) (v).begin(),(v).end()
#define p(s) cout<<(s)<<endl
#define p2(a,b) cout<<(a)<<" "<<(b)<<endl
#define v2(T) vector<vector<T>>
typedef long long ll;
using namespace std;
const ll mod= 1e9;


ll dp[10010][10100];
int main(){
    ll N, M;
    cin >> N >> M;
    N/=1000LL;
    N%=M;
    dp[0][0]=1;
    REP(i,0,M){
        REP(j,0,N+1){
            (dp[i+1][j] += dp[i][j]) %= mod;
            if(j+1<=N) (dp[i+1][j+1] += dp[i][j]) %= mod;
        }
    }
    p(dp[M][N]);
    return 0;
}
0