結果

問題 No.129 お年玉(2)
ユーザー Ai3ShotaAi3Shota
提出日時 2018-05-09 23:43:51
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 471 bytes
コンパイル時間 1,233 ms
コンパイル使用メモリ 158,344 KB
実行使用メモリ 233,472 KB
最終ジャッジ日時 2024-06-28 02:52:30
合計ジャッジ時間 20,028 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 48 ms
43,648 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 WA -
testcase_06 AC 741 ms
159,744 KB
testcase_07 AC 796 ms
183,168 KB
testcase_08 AC 151 ms
69,504 KB
testcase_09 WA -
testcase_10 AC 697 ms
175,488 KB
testcase_11 WA -
testcase_12 AC 216 ms
61,696 KB
testcase_13 AC 168 ms
54,912 KB
testcase_14 AC 836 ms
166,528 KB
testcase_15 AC 670 ms
140,928 KB
testcase_16 AC 742 ms
160,768 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 299 ms
108,416 KB
testcase_20 AC 906 ms
190,080 KB
testcase_21 AC 1,077 ms
193,408 KB
testcase_22 WA -
testcase_23 AC 776 ms
188,288 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 360 ms
109,696 KB
testcase_27 AC 402 ms
113,408 KB
testcase_28 WA -
testcase_29 AC 2 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 5 ms
5,376 KB
testcase_35 WA -
testcase_36 AC 9 ms
7,552 KB
testcase_37 AC 9 ms
7,808 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 267 ms
79,616 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 405 ms
137,472 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
権限があれば一括ダウンロードができます

ソースコード

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) << endl;
    
    return 0;
}
0