結果

問題 No.129 お年玉(2)
ユーザー rogi52rogi52
提出日時 2022-08-16 00:27:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 506 bytes
コンパイル時間 1,979 ms
コンパイル使用メモリ 200,908 KB
実行使用メモリ 613,492 KB
最終ジャッジ日時 2024-10-02 12:37:31
合計ジャッジ時間 12,113 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
163,820 KB
testcase_01 MLE -
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 168 ms
373,116 KB
testcase_06 AC 255 ms
477,736 KB
testcase_07 MLE -
testcase_08 AC 215 ms
431,624 KB
testcase_09 AC 286 ms
511,716 KB
testcase_10 MLE -
testcase_11 AC 209 ms
422,060 KB
testcase_12 AC 267 ms
489,568 KB
testcase_13 AC 279 ms
502,432 KB
testcase_14 AC 269 ms
492,072 KB
testcase_15 AC 225 ms
441,324 KB
testcase_16 AC 254 ms
470,136 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 223 ms
437,696 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 214 ms
419,596 KB
testcase_26 AC 219 ms
426,364 KB
testcase_27 AC 213 ms
419,440 KB
testcase_28 MLE -
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 3 ms
7,456 KB
testcase_32 AC 3 ms
7,552 KB
testcase_33 AC 14 ms
62,884 KB
testcase_34 AC 9 ms
36,268 KB
testcase_35 AC 13 ms
58,728 KB
testcase_36 AC 15 ms
64,768 KB
testcase_37 AC 16 ms
71,104 KB
testcase_38 AC 60 ms
241,576 KB
testcase_39 AC 81 ms
268,384 KB
testcase_40 AC 201 ms
403,596 KB
testcase_41 AC 128 ms
323,848 KB
testcase_42 AC 65 ms
248,468 KB
testcase_43 AC 66 ms
247,540 KB
testcase_44 MLE -
testcase_45 AC 46 ms
202,136 KB
testcase_46 AC 86 ms
278,520 KB
testcase_47 MLE -
testcase_48 AC 231 ms
440,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

ll C[10001][10001];

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    ll N,M; cin >> N >> M;
    N = N / 1000;
    N %= M;
    ll MOD = 1e9;
    for(int i = 0; i <= M; i++) C[i][0] = C[i][i] = 1;
    for(int i = 1; i <= M; i++) {
        for(int k = 1; k < i; k++) {
            C[i][k] = (C[i - 1][k - 1] + C[i - 1][k]) % MOD;
        }
    }
    cout << C[M][N] << endl;
}
0