結果

問題 No.129 お年玉(2)
ユーザー Ai3ShotaAi3Shota
提出日時 2018-06-27 16:59:15
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 1,251 ms / 5,000 ms
コード長 489 bytes
コンパイル時間 1,564 ms
コンパイル使用メモリ 158,196 KB
実行使用メモリ 233,728 KB
最終ジャッジ日時 2024-12-20 18:21:41
合計ジャッジ時間 23,564 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
20,480 KB
testcase_01 AC 29 ms
44,160 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 325 ms
72,064 KB
testcase_06 AC 752 ms
160,000 KB
testcase_07 AC 1,080 ms
183,424 KB
testcase_08 AC 302 ms
70,016 KB
testcase_09 AC 718 ms
165,248 KB
testcase_10 AC 1,037 ms
175,744 KB
testcase_11 AC 679 ms
132,096 KB
testcase_12 AC 121 ms
62,080 KB
testcase_13 AC 95 ms
55,168 KB
testcase_14 AC 781 ms
166,656 KB
testcase_15 AC 615 ms
141,440 KB
testcase_16 AC 814 ms
160,896 KB
testcase_17 AC 633 ms
159,616 KB
testcase_18 AC 917 ms
161,408 KB
testcase_19 AC 595 ms
108,544 KB
testcase_20 AC 1,038 ms
190,336 KB
testcase_21 AC 830 ms
193,920 KB
testcase_22 AC 700 ms
133,120 KB
testcase_23 AC 1,100 ms
188,672 KB
testcase_24 AC 311 ms
74,752 KB
testcase_25 AC 658 ms
134,144 KB
testcase_26 AC 580 ms
109,952 KB
testcase_27 AC 604 ms
113,664 KB
testcase_28 AC 1,251 ms
233,728 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 2 ms
5,248 KB
testcase_34 AC 4 ms
5,504 KB
testcase_35 AC 5 ms
6,400 KB
testcase_36 AC 9 ms
7,552 KB
testcase_37 AC 8 ms
7,808 KB
testcase_38 AC 100 ms
37,120 KB
testcase_39 AC 127 ms
46,336 KB
testcase_40 AC 381 ms
107,776 KB
testcase_41 AC 332 ms
79,744 KB
testcase_42 AC 127 ms
39,296 KB
testcase_43 AC 54 ms
28,032 KB
testcase_44 AC 740 ms
137,856 KB
testcase_45 AC 68 ms
25,600 KB
testcase_46 AC 71 ms
34,816 KB
testcase_47 AC 1,070 ms
181,888 KB
testcase_48 AC 379 ms
80,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define MOD 1000000000
#define MAX 10001
typedef long long ll;
using namespace std;

ll N, M;

ll dp[MAX][MAX] = {{0}};

ll nCr(ll n, ll r)
{
       if(n==r) return dp[n][r] = 1;
       if(r==0) return dp[n][r] = 1;
       if(r==1) return dp[n][r] = n;
       if(dp[n][r]) return dp[n][r] % MOD;
       return dp[n][r] = nCr(n-1,r) + nCr(n-1,r-1);
}

int main(void){
    
    cin >> N >> M;
    cout << nCr(M, (N / 1000) % M) % MOD << endl;

    
    return 0;
}

0