結果

問題 No.129 お年玉(2)
ユーザー tetsuzuki1115tetsuzuki1115
提出日時 2018-10-13 18:38:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 588 ms / 5,000 ms
コード長 752 bytes
コンパイル時間 1,114 ms
コンパイル使用メモリ 91,676 KB
実行使用メモリ 165,888 KB
最終ジャッジ日時 2024-05-05 23:53:17
合計ジャッジ時間 12,891 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
18,816 KB
testcase_01 AC 43 ms
43,904 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 144 ms
67,840 KB
testcase_06 AC 363 ms
113,664 KB
testcase_07 AC 512 ms
142,336 KB
testcase_08 AC 127 ms
67,968 KB
testcase_09 AC 427 ms
133,376 KB
testcase_10 AC 466 ms
146,560 KB
testcase_11 AC 289 ms
93,440 KB
testcase_12 AC 98 ms
61,312 KB
testcase_13 AC 79 ms
54,912 KB
testcase_14 AC 403 ms
121,472 KB
testcase_15 AC 324 ms
101,504 KB
testcase_16 AC 328 ms
103,296 KB
testcase_17 AC 436 ms
137,216 KB
testcase_18 AC 446 ms
133,248 KB
testcase_19 AC 234 ms
103,296 KB
testcase_20 AC 434 ms
125,568 KB
testcase_21 AC 565 ms
165,888 KB
testcase_22 AC 330 ms
103,424 KB
testcase_23 AC 556 ms
151,552 KB
testcase_24 AC 144 ms
73,472 KB
testcase_25 AC 283 ms
88,576 KB
testcase_26 AC 259 ms
97,536 KB
testcase_27 AC 266 ms
98,048 KB
testcase_28 AC 588 ms
158,464 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 4 ms
5,376 KB
testcase_35 AC 5 ms
6,528 KB
testcase_36 AC 6 ms
7,424 KB
testcase_37 AC 7 ms
7,808 KB
testcase_38 AC 53 ms
29,312 KB
testcase_39 AC 90 ms
40,960 KB
testcase_40 AC 242 ms
92,672 KB
testcase_41 AC 162 ms
61,696 KB
testcase_42 AC 72 ms
33,408 KB
testcase_43 AC 42 ms
27,392 KB
testcase_44 AC 329 ms
129,920 KB
testcase_45 AC 34 ms
22,144 KB
testcase_46 AC 51 ms
33,920 KB
testcase_47 AC 491 ms
158,976 KB
testcase_48 AC 165 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <math.h>
#include <cmath>
#include <limits.h>
#include <map>
#include <unordered_map>
#include <set>
#include <queue>
#include <algorithm>
#include <functional>
#include <stdio.h>
using namespace std;

long long MOD = 1000000007;

long long C[10001][10001];

long long func( int n, int r ) {


    if ( n/2 < r ) { r = n-r; }
    if ( r == 0 ) { return 1; }
    if ( C[n][r] > 0 ) { return C[n][r]; }

    C[n][r] = ( func( n-1, r ) + func( n-1, r-1 ) ) % ( (long long)1e9 );

    return C[n][r];
}


int main() {
    
    long long N,M;
    cin >> N >> M;

    int a = (N/1000)%M;
    
    long long ans = func( M, a );

    cout << ans << endl;
    

    return 0;
}
0