結果

問題 No.129 お年玉(2)
ユーザー satanicsatanic
提出日時 2016-05-04 21:56:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,149 ms / 5,000 ms
コード長 613 bytes
コンパイル時間 703 ms
コンパイル使用メモリ 75,224 KB
実行使用メモリ 394,880 KB
最終ジャッジ日時 2024-11-28 00:32:29
合計ジャッジ時間 28,365 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
394,368 KB
testcase_01 AC 289 ms
394,752 KB
testcase_02 AC 285 ms
394,228 KB
testcase_03 AC 285 ms
394,228 KB
testcase_04 AC 286 ms
394,240 KB
testcase_05 AC 428 ms
394,624 KB
testcase_06 AC 848 ms
394,596 KB
testcase_07 AC 870 ms
394,772 KB
testcase_08 AC 392 ms
394,624 KB
testcase_09 AC 887 ms
394,624 KB
testcase_10 AC 748 ms
394,752 KB
testcase_11 AC 652 ms
394,560 KB
testcase_12 AC 417 ms
394,624 KB
testcase_13 AC 371 ms
394,620 KB
testcase_14 AC 850 ms
394,624 KB
testcase_15 AC 723 ms
394,624 KB
testcase_16 AC 802 ms
394,596 KB
testcase_17 AC 877 ms
394,752 KB
testcase_18 AC 725 ms
394,624 KB
testcase_19 AC 530 ms
394,880 KB
testcase_20 AC 883 ms
394,880 KB
testcase_21 AC 1,037 ms
394,816 KB
testcase_22 AC 633 ms
394,752 KB
testcase_23 AC 808 ms
394,752 KB
testcase_24 AC 393 ms
394,752 KB
testcase_25 AC 661 ms
394,624 KB
testcase_26 AC 546 ms
394,696 KB
testcase_27 AC 559 ms
394,624 KB
testcase_28 AC 1,149 ms
394,752 KB
testcase_29 AC 291 ms
394,240 KB
testcase_30 AC 286 ms
394,240 KB
testcase_31 AC 290 ms
394,228 KB
testcase_32 AC 290 ms
394,228 KB
testcase_33 AC 287 ms
394,240 KB
testcase_34 AC 294 ms
394,368 KB
testcase_35 AC 290 ms
394,368 KB
testcase_36 AC 288 ms
394,368 KB
testcase_37 AC 287 ms
394,368 KB
testcase_38 AC 356 ms
394,624 KB
testcase_39 AC 377 ms
394,496 KB
testcase_40 AC 640 ms
394,624 KB
testcase_41 AC 487 ms
394,496 KB
testcase_42 AC 362 ms
394,516 KB
testcase_43 AC 322 ms
394,496 KB
testcase_44 AC 586 ms
394,752 KB
testcase_45 AC 325 ms
394,368 KB
testcase_46 AC 345 ms
394,496 KB
testcase_47 AC 754 ms
394,680 KB
testcase_48 AC 434 ms
394,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <vector>

using ll = long long int;

std::vector<std::vector<int>> memo(10000, std::vector<int>(10000, -1));

ll Combination(ll n, ll r, ll mod){
    if(memo[n-1][r]!=-1) return memo[n-1][r];
    if(r==0 || n==r){
        memo[n-1][r] = 1;
        return 1;
    }
    memo[n-1][r] = (Combination(n-1, r-1, mod) + Combination(n-1, r, mod))%mod;
    return memo[n-1][r];
} 

int main(){
    std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    
    ll n, m;
    std::cin >> n >> m;
    std::cout << Combination(m, (n/1000)%m, 1000000000) << "\n";
    return 0;

}
0