結果

問題 No.129 お年玉(2)
ユーザー ferinferin
提出日時 2017-02-13 21:20:34
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 245 ms / 5,000 ms
コード長 845 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 157,812 KB
実行使用メモリ 236,800 KB
最終ジャッジ日時 2024-05-05 23:15:53
合計ジャッジ時間 9,004 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
21,888 KB
testcase_01 AC 220 ms
236,800 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 103 ms
108,544 KB
testcase_06 AC 155 ms
162,176 KB
testcase_07 AC 183 ms
194,688 KB
testcase_08 AC 129 ms
138,368 KB
testcase_09 AC 167 ms
180,608 KB
testcase_10 AC 190 ms
201,088 KB
testcase_11 AC 127 ms
133,376 KB
testcase_12 AC 159 ms
168,960 KB
testcase_13 AC 166 ms
176,000 KB
testcase_14 AC 159 ms
170,624 KB
testcase_15 AC 134 ms
143,488 KB
testcase_16 AC 149 ms
160,640 KB
testcase_17 AC 177 ms
191,360 KB
testcase_18 AC 168 ms
181,120 KB
testcase_19 AC 202 ms
192,256 KB
testcase_20 AC 201 ms
190,848 KB
testcase_21 AC 245 ms
231,936 KB
testcase_22 AC 142 ms
139,904 KB
testcase_23 AC 217 ms
206,592 KB
testcase_24 AC 186 ms
199,296 KB
testcase_25 AC 126 ms
134,016 KB
testcase_26 AC 126 ms
136,832 KB
testcase_27 AC 123 ms
133,248 KB
testcase_28 AC 216 ms
233,856 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 4 ms
5,504 KB
testcase_35 AC 5 ms
7,296 KB
testcase_36 AC 5 ms
7,680 KB
testcase_37 AC 6 ms
8,576 KB
testcase_38 AC 33 ms
37,248 KB
testcase_39 AC 46 ms
51,968 KB
testcase_40 AC 115 ms
125,440 KB
testcase_41 AC 75 ms
81,920 KB
testcase_42 AC 34 ms
41,088 KB
testcase_43 AC 34 ms
40,448 KB
testcase_44 AC 219 ms
235,008 KB
testcase_45 AC 24 ms
26,368 KB
testcase_46 AC 50 ms
56,960 KB
testcase_47 AC 214 ms
228,224 KB
testcase_48 AC 139 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