結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
394,452 KB
testcase_01 AC 265 ms
394,688 KB
testcase_02 AC 267 ms
394,224 KB
testcase_03 AC 269 ms
394,352 KB
testcase_04 AC 270 ms
394,240 KB
testcase_05 AC 399 ms
394,624 KB
testcase_06 AC 805 ms
394,600 KB
testcase_07 AC 809 ms
394,880 KB
testcase_08 AC 377 ms
394,568 KB
testcase_09 AC 891 ms
394,752 KB
testcase_10 AC 735 ms
394,752 KB
testcase_11 AC 632 ms
394,560 KB
testcase_12 AC 401 ms
394,624 KB
testcase_13 AC 365 ms
394,624 KB
testcase_14 AC 869 ms
394,740 KB
testcase_15 AC 723 ms
394,704 KB
testcase_16 AC 767 ms
394,724 KB
testcase_17 AC 878 ms
394,752 KB
testcase_18 AC 697 ms
394,624 KB
testcase_19 AC 489 ms
394,752 KB
testcase_20 AC 894 ms
394,752 KB
testcase_21 AC 1,048 ms
394,752 KB
testcase_22 AC 619 ms
394,572 KB
testcase_23 AC 801 ms
394,752 KB
testcase_24 AC 369 ms
394,644 KB
testcase_25 AC 649 ms
394,688 KB
testcase_26 AC 517 ms
394,624 KB
testcase_27 AC 535 ms
394,752 KB
testcase_28 AC 1,194 ms
394,752 KB
testcase_29 AC 268 ms
394,240 KB
testcase_30 AC 271 ms
394,224 KB
testcase_31 AC 269 ms
394,240 KB
testcase_32 AC 273 ms
394,240 KB
testcase_33 AC 269 ms
394,356 KB
testcase_34 AC 273 ms
394,368 KB
testcase_35 AC 275 ms
394,388 KB
testcase_36 AC 276 ms
394,368 KB
testcase_37 AC 272 ms
394,368 KB
testcase_38 AC 338 ms
394,496 KB
testcase_39 AC 370 ms
394,416 KB
testcase_40 AC 626 ms
394,624 KB
testcase_41 AC 445 ms
394,472 KB
testcase_42 AC 339 ms
394,496 KB
testcase_43 AC 307 ms
394,496 KB
testcase_44 AC 575 ms
394,820 KB
testcase_45 AC 307 ms
394,468 KB
testcase_46 AC 326 ms
394,428 KB
testcase_47 AC 750 ms
394,812 KB
testcase_48 AC 422 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