結果

問題 No.129 お年玉(2)
ユーザー tsutajtsutaj
提出日時 2017-07-05 09:27:37
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 242 ms / 5,000 ms
コード長 820 bytes
コンパイル時間 1,582 ms
コンパイル使用メモリ 166,024 KB
実行使用メモリ 236,928 KB
最終ジャッジ日時 2024-11-28 00:55:31
合計ジャッジ時間 14,504 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 232 ms
236,800 KB
testcase_01 AC 229 ms
236,672 KB
testcase_02 AC 228 ms
236,800 KB
testcase_03 AC 230 ms
236,800 KB
testcase_04 AC 226 ms
236,672 KB
testcase_05 AC 227 ms
236,800 KB
testcase_06 AC 232 ms
236,800 KB
testcase_07 AC 229 ms
236,672 KB
testcase_08 AC 229 ms
236,928 KB
testcase_09 AC 231 ms
236,672 KB
testcase_10 AC 231 ms
236,800 KB
testcase_11 AC 229 ms
236,800 KB
testcase_12 AC 226 ms
236,672 KB
testcase_13 AC 231 ms
236,800 KB
testcase_14 AC 231 ms
236,800 KB
testcase_15 AC 226 ms
236,800 KB
testcase_16 AC 230 ms
236,800 KB
testcase_17 AC 228 ms
236,800 KB
testcase_18 AC 229 ms
236,672 KB
testcase_19 AC 230 ms
236,800 KB
testcase_20 AC 229 ms
236,672 KB
testcase_21 AC 232 ms
236,800 KB
testcase_22 AC 242 ms
236,800 KB
testcase_23 AC 233 ms
236,800 KB
testcase_24 AC 232 ms
236,800 KB
testcase_25 AC 231 ms
236,800 KB
testcase_26 AC 230 ms
236,800 KB
testcase_27 AC 231 ms
236,800 KB
testcase_28 AC 232 ms
236,800 KB
testcase_29 AC 231 ms
236,800 KB
testcase_30 AC 231 ms
236,800 KB
testcase_31 AC 232 ms
236,800 KB
testcase_32 AC 232 ms
236,800 KB
testcase_33 AC 232 ms
236,800 KB
testcase_34 AC 231 ms
236,800 KB
testcase_35 AC 231 ms
236,800 KB
testcase_36 AC 232 ms
236,672 KB
testcase_37 AC 232 ms
236,800 KB
testcase_38 AC 231 ms
236,800 KB
testcase_39 AC 231 ms
236,800 KB
testcase_40 AC 231 ms
236,672 KB
testcase_41 AC 231 ms
236,672 KB
testcase_42 AC 232 ms
236,800 KB
testcase_43 AC 232 ms
236,672 KB
testcase_44 AC 233 ms
236,672 KB
testcase_45 AC 232 ms
236,800 KB
testcase_46 AC 231 ms
236,800 KB
testcase_47 AC 231 ms
236,800 KB
testcase_48 AC 233 ms
236,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 基本テンプレート (縮小版)

#include <bits/stdc++.h>
using namespace std;
#define rep(i,a,n) for(int (i)=(a); (i)<(n); (i)++)
#define repq(i,a,n) for(int (i)=(a); (i)<=(n); (i)++)
#define repr(i,a,n) for(int (i)=(a); (i)>=(n); (i)--)
template<typename T> void chmax(T &a, T b) {a = max(a, b);}
template<typename T> void chmin(T &a, T b) {a = min(a, b);}
template<typename T> void chadd(T &a, T b) {a = a + b;}
typedef pair<int, int> pii;
typedef long long ll;
constexpr ll INF = 1001001001001001LL;
constexpr ll MOD = 1000000000LL;

int comb[10001][10001];

signed main() {
    rep(i,0,10001) comb[i][0] = 1;
    rep(i,1,10001) repq(j,1,i) {
        comb[i][j] = (comb[i-1][j-1] + comb[i-1][j]) % MOD;
    }

    ll N, M; cin >> N >> M;
    N /= 1000; N %= M;
    cout << comb[M][N] << endl;
    return 0;
}
0