結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
21,780 KB
testcase_01 AC 185 ms
268,084 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 59 ms
106,496 KB
testcase_06 AC 92 ms
160,256 KB
testcase_07 AC 116 ms
192,512 KB
testcase_08 AC 80 ms
136,448 KB
testcase_09 AC 105 ms
178,816 KB
testcase_10 AC 116 ms
198,272 KB
testcase_11 AC 74 ms
131,328 KB
testcase_12 AC 98 ms
167,168 KB
testcase_13 AC 104 ms
173,952 KB
testcase_14 AC 99 ms
168,576 KB
testcase_15 AC 80 ms
141,312 KB
testcase_16 AC 90 ms
158,848 KB
testcase_17 AC 111 ms
189,312 KB
testcase_18 AC 107 ms
179,200 KB
testcase_19 AC 111 ms
190,336 KB
testcase_20 AC 110 ms
188,800 KB
testcase_21 AC 149 ms
231,552 KB
testcase_22 AC 78 ms
137,600 KB
testcase_23 AC 119 ms
204,544 KB
testcase_24 AC 115 ms
197,248 KB
testcase_25 AC 75 ms
131,968 KB
testcase_26 AC 76 ms
134,912 KB
testcase_27 AC 75 ms
131,200 KB
testcase_28 AC 154 ms
233,728 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 1 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
5,888 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 3 ms
5,760 KB
testcase_37 AC 4 ms
6,528 KB
testcase_38 AC 17 ms
35,200 KB
testcase_39 AC 25 ms
50,048 KB
testcase_40 AC 70 ms
123,648 KB
testcase_41 AC 42 ms
79,872 KB
testcase_42 AC 19 ms
39,040 KB
testcase_43 AC 18 ms
38,528 KB
testcase_44 AC 156 ms
235,008 KB
testcase_45 AC 13 ms
24,320 KB
testcase_46 AC 27 ms
54,912 KB
testcase_47 AC 147 ms
227,584 KB
testcase_48 AC 82 ms
143,232 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;
    int 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