結果

問題 No.129 お年玉(2)
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2019-04-30 01:35:25
言語 C++11
(gcc 13.3.0)
結果
MLE  
実行時間 -
コード長 980 bytes
コンパイル時間 816 ms
コンパイル使用メモリ 76,696 KB
実行使用メモリ 785,024 KB
最終ジャッジ日時 2024-12-25 23:49:55
合計ジャッジ時間 19,391 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
41,600 KB
testcase_01 MLE -
testcase_02 AC 29 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 324 ms
321,408 KB
testcase_06 AC 464 ms
509,952 KB
testcase_07 MLE -
testcase_08 AC 383 ms
425,600 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 363 ms
407,936 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 400 ms
443,392 KB
testcase_16 AC 459 ms
504,704 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 427 ms
430,336 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 370 ms
410,624 KB
testcase_26 AC 374 ms
420,736 KB
testcase_27 AC 402 ms
407,936 KB
testcase_28 MLE -
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 3 ms
5,248 KB
testcase_32 AC 3 ms
5,248 KB
testcase_33 AC 6 ms
7,680 KB
testcase_34 AC 4 ms
5,248 KB
testcase_35 AC 5 ms
7,168 KB
testcase_36 AC 6 ms
7,808 KB
testcase_37 AC 6 ms
9,216 KB
testcase_38 AC 73 ms
86,272 KB
testcase_39 AC 131 ms
132,480 KB
testcase_40 AC 336 ms
380,800 KB
testcase_41 AC 202 ms
230,656 KB
testcase_42 AC 84 ms
98,176 KB
testcase_43 AC 84 ms
96,384 KB
testcase_44 MLE -
testcase_45 AC 49 ms
54,016 KB
testcase_46 AC 127 ms
148,352 KB
testcase_47 MLE -
testcase_48 AC 428 ms
449,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <string>
#include <queue>
#include <stack>
#include <math.h>
#include <set>
#include <cstdio>
#define ALL(obj) (obj).begin(),(obj).end()
#define RALL(obj) (obj).rbegin(),(obj).rend()
#define P pair<int, int>

#define MOD 1000000007
#define INF 1012345678
#define NINF (-2147483647-1)
#define LLINF 9223372036854775807
using ll = long long;
using namespace std;

// combination
ll comb(ll n, ll r) {
    vector<vector<ll>> v(n + 1, vector<ll>(n + 1, 0));
    for (ll i = 0; i < (ll)v.size(); i++) {
        v[i][0] = 1;
        v[i][i] = 1;
    }
    for (ll j = 1; j < (ll)v.size(); j++) {
        for (ll k = 1; k < j; k++) {
            v[j][k] = (v[j - 1][k - 1] + v[j - 1][k]) % 1000000000;
        }
    }
    return v[n][r];
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll N,M;
    cin >> N >> M;
    cout << comb(M, N / 1000 % M) << endl;
    getchar(); getchar();
}
0