結果

問題 No.129 お年玉(2)
ユーザー ferinferin
提出日時 2017-02-13 21:16:20
言語 C++11
(gcc 11.4.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 844 bytes
コンパイル時間 1,343 ms
コンパイル使用メモリ 158,856 KB
実行使用メモリ 590,108 KB
最終ジャッジ日時 2024-05-20 10:44:45
合計ジャッジ時間 11,665 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
175,652 KB
testcase_01 MLE -
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 178 ms
346,740 KB
testcase_06 AC 329 ms
445,972 KB
testcase_07 AC 362 ms
507,648 KB
testcase_08 AC 234 ms
401,036 KB
testcase_09 AC 306 ms
482,768 KB
testcase_10 MLE -
testcase_11 AC 226 ms
391,444 KB
testcase_12 AC 286 ms
459,212 KB
testcase_13 AC 299 ms
471,832 KB
testcase_14 AC 290 ms
461,976 KB
testcase_15 AC 245 ms
410,840 KB
testcase_16 AC 272 ms
443,388 KB
testcase_17 AC 323 ms
501,200 KB
testcase_18 AC 312 ms
481,948 KB
testcase_19 AC 326 ms
503,128 KB
testcase_20 AC 324 ms
500,216 KB
testcase_21 MLE -
testcase_22 AC 237 ms
403,584 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 225 ms
393,416 KB
testcase_26 AC 231 ms
398,364 KB
testcase_27 AC 229 ms
391,668 KB
testcase_28 MLE -
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 8 ms
36,112 KB
testcase_35 AC 14 ms
58,784 KB
testcase_36 AC 15 ms
64,840 KB
testcase_37 AC 17 ms
73,044 KB
testcase_38 AC 63 ms
216,816 KB
testcase_39 AC 82 ms
241,648 KB
testcase_40 AC 214 ms
376,868 KB
testcase_41 AC 114 ms
295,792 KB
testcase_42 AC 67 ms
221,852 KB
testcase_43 AC 68 ms
222,384 KB
testcase_44 MLE -
testcase_45 AC 49 ms
197,620 KB
testcase_46 AC 88 ms
250,588 KB
testcase_47 MLE -
testcase_48 AC 245 ms
414,064 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

ll 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