結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
20,480 KB
testcase_01 AC 41 ms
43,904 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 166 ms
71,936 KB
testcase_06 AC 703 ms
159,744 KB
testcase_07 AC 681 ms
183,296 KB
testcase_08 AC 135 ms
69,632 KB
testcase_09 AC 791 ms
164,992 KB
testcase_10 AC 623 ms
175,488 KB
testcase_11 AC 474 ms
131,968 KB
testcase_12 AC 208 ms
61,824 KB
testcase_13 AC 151 ms
54,912 KB
testcase_14 AC 928 ms
166,528 KB
testcase_15 AC 758 ms
141,184 KB
testcase_16 AC 628 ms
160,768 KB
testcase_17 AC 764 ms
159,360 KB
testcase_18 AC 545 ms
161,152 KB
testcase_19 AC 248 ms
108,288 KB
testcase_20 AC 791 ms
190,080 KB
testcase_21 AC 987 ms
193,536 KB
testcase_22 AC 454 ms
132,992 KB
testcase_23 AC 678 ms
188,160 KB
testcase_24 AC 130 ms
74,368 KB
testcase_25 AC 496 ms
134,016 KB
testcase_26 AC 310 ms
109,824 KB
testcase_27 AC 335 ms
113,408 KB
testcase_28 AC 1,161 ms
233,344 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 4 ms
5,504 KB
testcase_35 AC 6 ms
6,528 KB
testcase_36 AC 9 ms
7,552 KB
testcase_37 AC 7 ms
7,808 KB
testcase_38 AC 90 ms
36,736 KB
testcase_39 AC 130 ms
46,080 KB
testcase_40 AC 448 ms
107,520 KB
testcase_41 AC 238 ms
79,488 KB
testcase_42 AC 83 ms
39,040 KB
testcase_43 AC 62 ms
28,032 KB
testcase_44 AC 346 ms
137,472 KB
testcase_45 AC 46 ms
25,344 KB
testcase_46 AC 88 ms
34,560 KB
testcase_47 AC 598 ms
181,632 KB
testcase_48 AC 163 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