結果

問題 No.129 お年玉(2)
ユーザー Ai3ShotaAi3Shota
提出日時 2018-05-09 23:45:10
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 1,274 ms / 5,000 ms
コード長 477 bytes
コンパイル時間 1,353 ms
コンパイル使用メモリ 158,492 KB
実行使用メモリ 233,344 KB
最終ジャッジ日時 2024-11-28 01:06:01
合計ジャッジ時間 19,297 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
20,352 KB
testcase_01 AC 47 ms
43,648 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 161 ms
71,808 KB
testcase_06 AC 766 ms
159,616 KB
testcase_07 AC 764 ms
183,168 KB
testcase_08 AC 144 ms
69,760 KB
testcase_09 AC 867 ms
164,992 KB
testcase_10 AC 661 ms
175,488 KB
testcase_11 AC 518 ms
131,840 KB
testcase_12 AC 218 ms
61,824 KB
testcase_13 AC 165 ms
54,784 KB
testcase_14 AC 837 ms
166,400 KB
testcase_15 AC 653 ms
141,184 KB
testcase_16 AC 705 ms
160,896 KB
testcase_17 AC 858 ms
159,232 KB
testcase_18 AC 588 ms
161,280 KB
testcase_19 AC 270 ms
108,288 KB
testcase_20 AC 878 ms
190,208 KB
testcase_21 AC 1,124 ms
193,536 KB
testcase_22 AC 495 ms
132,992 KB
testcase_23 AC 740 ms
188,288 KB
testcase_24 AC 145 ms
74,368 KB
testcase_25 AC 544 ms
133,888 KB
testcase_26 AC 323 ms
109,824 KB
testcase_27 AC 364 ms
113,408 KB
testcase_28 AC 1,274 ms
233,344 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 1 ms
5,248 KB
testcase_34 AC 4 ms
5,376 KB
testcase_35 AC 4 ms
6,272 KB
testcase_36 AC 8 ms
7,552 KB
testcase_37 AC 8 ms
7,680 KB
testcase_38 AC 94 ms
36,864 KB
testcase_39 AC 143 ms
46,208 KB
testcase_40 AC 509 ms
107,520 KB
testcase_41 AC 249 ms
79,616 KB
testcase_42 AC 92 ms
39,168 KB
testcase_43 AC 64 ms
27,904 KB
testcase_44 AC 370 ms
137,472 KB
testcase_45 AC 48 ms
25,216 KB
testcase_46 AC 95 ms
34,560 KB
testcase_47 AC 643 ms
181,632 KB
testcase_48 AC 176 ms
80,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define MOD 1000000000

using namespace std;

long long N, M;
long long dp[10001][10001] = {{0}};

long long rec(long long n, long long r)
{
    if (r == 0 || r == n) return 1;
    else if (r == 1) return n % MOD;
    if(dp[n][r] != 0) return dp[n][r] % MOD;
    return dp[n][r] = (rec(n - 1, r - 1) % MOD + rec(n - 1, r) % MOD);
}

int main(void){
    
    cin >> N >> M;
    cout << rec(M, (N % (M * 1000)) / 1000) % MOD << endl;
    
    return 0;
}
0