結果

問題 No.129 お年玉(2)
ユーザー Ai3ShotaAi3Shota
提出日時 2018-06-27 16:59:15
言語 C++11
(gcc 11.4.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 489 bytes
コンパイル時間 1,532 ms
コンパイル使用メモリ 158,384 KB
実行使用メモリ 611,920 KB
最終ジャッジ日時 2024-05-22 09:29:29
合計ジャッジ時間 16,599 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
65,420 KB
testcase_01 AC 219 ms
432,752 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 213 ms
421,976 KB
testcase_06 AC 548 ms
366,552 KB
testcase_07 AC 653 ms
470,008 KB
testcase_08 MLE -
testcase_09 AC 544 ms
343,692 KB
testcase_10 MLE -
testcase_11 AC 443 ms
369,100 KB
testcase_12 AC 99 ms
88,604 KB
testcase_13 AC 79 ms
74,352 KB
testcase_14 AC 608 ms
372,168 KB
testcase_15 AC 498 ms
335,356 KB
testcase_16 AC 604 ms
400,732 KB
testcase_17 AC 529 ms
312,508 KB
testcase_18 AC 553 ms
501,496 KB
testcase_19 MLE -
testcase_20 AC 707 ms
454,056 KB
testcase_21 AC 625 ms
362,484 KB
testcase_22 AC 455 ms
403,740 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 464 ms
358,748 KB
testcase_26 AC 352 ms
451,948 KB
testcase_27 AC 366 ms
432,920 KB
testcase_28 AC 899 ms
481,772 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 6 ms
16,832 KB
testcase_35 AC 5 ms
6,940 KB
testcase_36 AC 10 ms
24,864 KB
testcase_37 AC 9 ms
17,412 KB
testcase_38 AC 92 ms
130,492 KB
testcase_39 AC 107 ms
124,668 KB
testcase_40 AC 307 ms
236,680 KB
testcase_41 AC 237 ms
282,344 KB
testcase_42 AC 105 ms
188,612 KB
testcase_43 AC 46 ms
58,480 KB
testcase_44 MLE -
testcase_45 AC 63 ms
135,732 KB
testcase_46 AC 57 ms
65,184 KB
testcase_47 MLE -
testcase_48 MLE -
権限があれば一括ダウンロードができます

ソースコード

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