結果

問題 No.129 お年玉(2)
ユーザー haruteruharuteru
提出日時 2016-01-27 13:49:24
言語 C++11
(gcc 13.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 720 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 55,860 KB
実行使用メモリ 772,096 KB
最終ジャッジ日時 2024-11-28 00:14:29
合計ジャッジ時間 166,363 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
35,968 KB
testcase_01 TLE -
testcase_02 AC 17 ms
192,256 KB
testcase_03 AC 3 ms
12,072 KB
testcase_04 RE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 MLE -
testcase_12 TLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 513 ms
290,560 KB
testcase_17 TLE -
testcase_18 AC 3,255 ms
330,624 KB
testcase_19 TLE -
testcase_20 MLE -
testcase_21 AC 771 ms
461,696 KB
testcase_22 AC 354 ms
245,504 KB
testcase_23 AC 652 ms
372,096 KB
testcase_24 TLE -
testcase_25 AC 370 ms
235,008 KB
testcase_26 AC 351 ms
240,384 KB
testcase_27 AC 303 ms
233,472 KB
testcase_28 TLE -
testcase_29 AC 128 ms
5,248 KB
testcase_30 AC 74 ms
5,248 KB
testcase_31 AC 58 ms
5,248 KB
testcase_32 RE -
testcase_33 AC 88 ms
5,248 KB
testcase_34 AC 82 ms
5,248 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 102 ms
8,960 KB
testcase_38 TLE -
testcase_39 AC 171 ms
83,328 KB
testcase_40 AC 335 ms
219,136 KB
testcase_41 AC 246 ms
137,728 KB
testcase_42 RE -
testcase_43 RE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 1,135 ms
416,000 KB
testcase_48 AC 327 ms
294,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

const long long mod = 1000000000;

long long nCr(long long N, long long R)
{
    long long **dp;
    dp = new long long *[N + 1];
    for (long long n = 0; n <= (N+1); n++) {
        dp[n] = new long long [N + 1];
        for (long long r = 1; r <= n; r++) {
            if (n == 0 || r == 0 || n == r) {
                dp[n][r] = 1;
            }
            else {
                dp[n][r] = (dp[n - 1][r] + dp[n -1][r - 1]) % mod;
            }
        }
    }
    return (dp[N+1][R+1]) % mod;
}

int main()
{
    long long n, m, a;
    std::cin >> n;
    std::cin >> m;
    a = ((n / 1000) % m) % mod;
    if (a > 0) std::cout << nCr(m, a) << std::endl;
    else std::cout << 1 << std::endl;
}
0