結果

問題 No.129 お年玉(2)
ユーザー aaaaaaiuaaaaaaiu
提出日時 2019-08-24 02:51:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 369 ms / 5,000 ms
コード長 369 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 200,240 KB
実行使用メモリ 470,828 KB
最終ジャッジ日時 2024-10-13 14:57:46
合計ジャッジ時間 10,029 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
40,732 KB
testcase_01 AC 369 ms
470,828 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 98 ms
187,008 KB
testcase_06 AC 214 ms
287,744 KB
testcase_07 AC 292 ms
349,312 KB
testcase_08 AC 153 ms
243,200 KB
testcase_09 AC 264 ms
322,944 KB
testcase_10 AC 298 ms
362,240 KB
testcase_11 AC 143 ms
233,344 KB
testcase_12 AC 247 ms
300,672 KB
testcase_13 AC 261 ms
313,984 KB
testcase_14 AC 252 ms
303,488 KB
testcase_15 AC 167 ms
252,032 KB
testcase_16 AC 207 ms
285,184 KB
testcase_17 AC 277 ms
342,784 KB
testcase_18 AC 263 ms
323,840 KB
testcase_19 AC 289 ms
344,704 KB
testcase_20 AC 280 ms
342,144 KB
testcase_21 AC 347 ms
423,552 KB
testcase_22 AC 155 ms
253,048 KB
testcase_23 AC 332 ms
409,388 KB
testcase_24 AC 290 ms
358,016 KB
testcase_25 AC 144 ms
234,752 KB
testcase_26 AC 151 ms
240,128 KB
testcase_27 AC 141 ms
233,344 KB
testcase_28 AC 351 ms
427,520 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 3 ms
7,808 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 3 ms
7,296 KB
testcase_36 AC 4 ms
7,936 KB
testcase_37 AC 4 ms
9,088 KB
testcase_38 AC 26 ms
56,960 KB
testcase_39 AC 41 ms
83,328 KB
testcase_40 AC 122 ms
219,008 KB
testcase_41 AC 69 ms
137,728 KB
testcase_42 AC 30 ms
63,872 KB
testcase_43 AC 31 ms
62,720 KB
testcase_44 AC 358 ms
429,696 KB
testcase_45 AC 17 ms
38,016 KB
testcase_46 AC 44 ms
92,160 KB
testcase_47 AC 347 ms
415,616 KB
testcase_48 AC 167 ms
255,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
    int mod=1e9;
    ll n,m;
    cin>>n>>m;
    n/=1000;
    n%=m;
    ll c[m+1][m+1];
    for (int i=0;i<=m;i++)
        c[i][0]=c[i][i]=1;
    for (int i=2;i<=m;i++)
        for (int j=1;j<i;j++)
            c[i][j]=(c[i-1][j-1]+c[i-1][j])%mod;
    cout<<c[m][n]<<endl;
    return 0;
}
0