結果

問題 No.129 お年玉(2)
ユーザー ferinferin
提出日時 2017-02-13 21:20:34
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 230 ms / 5,000 ms
コード長 845 bytes
コンパイル時間 1,619 ms
コンパイル使用メモリ 157,544 KB
実行使用メモリ 236,672 KB
最終ジャッジ日時 2024-11-28 00:45:43
合計ジャッジ時間 7,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
22,016 KB
testcase_01 AC 227 ms
236,672 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 99 ms
108,544 KB
testcase_06 AC 150 ms
162,176 KB
testcase_07 AC 184 ms
194,560 KB
testcase_08 AC 127 ms
138,368 KB
testcase_09 AC 164 ms
180,736 KB
testcase_10 AC 191 ms
200,960 KB
testcase_11 AC 124 ms
133,248 KB
testcase_12 AC 158 ms
169,088 KB
testcase_13 AC 162 ms
176,000 KB
testcase_14 AC 158 ms
170,496 KB
testcase_15 AC 132 ms
143,360 KB
testcase_16 AC 148 ms
160,768 KB
testcase_17 AC 178 ms
191,232 KB
testcase_18 AC 168 ms
181,120 KB
testcase_19 AC 178 ms
192,128 KB
testcase_20 AC 178 ms
190,848 KB
testcase_21 AC 223 ms
232,064 KB
testcase_22 AC 131 ms
139,904 KB
testcase_23 AC 196 ms
206,592 KB
testcase_24 AC 190 ms
199,040 KB
testcase_25 AC 125 ms
134,016 KB
testcase_26 AC 130 ms
136,960 KB
testcase_27 AC 127 ms
132,992 KB
testcase_28 AC 224 ms
233,984 KB
testcase_29 AC 1 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 1 ms
5,248 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 3 ms
7,296 KB
testcase_36 AC 4 ms
7,552 KB
testcase_37 AC 4 ms
8,576 KB
testcase_38 AC 30 ms
37,120 KB
testcase_39 AC 44 ms
51,968 KB
testcase_40 AC 113 ms
125,440 KB
testcase_41 AC 72 ms
81,792 KB
testcase_42 AC 40 ms
40,832 KB
testcase_43 AC 33 ms
40,576 KB
testcase_44 AC 230 ms
235,008 KB
testcase_45 AC 21 ms
26,112 KB
testcase_46 AC 47 ms
56,960 KB
testcase_47 AC 213 ms
228,352 KB
testcase_48 AC 112 ms
145,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<ll> VL;
typedef vector<VL> VVL;
typedef pair<int, int> PII;

#define FOR(i, a, n) for (int i = (int)a; i < (int)n; ++i)
#define REP(i, n) FOR(i, 0, n)
#define ALL(x) x.begin(), x.end()
#define MOD 1000000007
#define INF 1000000000
#define PI 3.14159265359
#define EPS 1e-12

int dp[10010][10010];

int main(void)
{
  ll n, m;
  cin >> n >> m;
  ll a = n%(m*1000)/1000;
  if(a == 0) {
    cout << 1 << endl;
    return 0;
  }
  //cout << a << endl;
  //m人にa枚を配る
  REP(i, m+1) {
    REP(j, i+1) {
      if(j == 0 || j == i) dp[i][j] = 1;
      else dp[i][j] = (dp[i-1][j-1] + dp[i-1][j])%INF;
      //cout << dp[i][j] << " ";
    }
    //cout << endl;
  }

  cout << dp[m][a]%INF << endl;
  return 0;
}
0