結果

問題 No.129 お年玉(2)
ユーザー ferinferin
提出日時 2017-02-13 21:16:20
言語 C++11
(gcc 13.3.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 844 bytes
コンパイル時間 1,691 ms
コンパイル使用メモリ 159,260 KB
実行使用メモリ 569,328 KB
最終ジャッジ日時 2024-12-20 17:46:59
合計ジャッジ時間 11,979 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
92,672 KB
testcase_01 AC 627 ms
494,000 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 150 ms
263,476 KB
testcase_06 AC 295 ms
388,988 KB
testcase_07 AC 377 ms
482,164 KB
testcase_08 AC 250 ms
383,452 KB
testcase_09 AC 349 ms
463,344 KB
testcase_10 AC 387 ms
501,772 KB
testcase_11 AC 273 ms
373,572 KB
testcase_12 AC 329 ms
441,108 KB
testcase_13 AC 351 ms
454,188 KB
testcase_14 AC 318 ms
442,620 KB
testcase_15 AC 267 ms
393,044 KB
testcase_16 AC 307 ms
424,168 KB
testcase_17 AC 356 ms
483,212 KB
testcase_18 AC 338 ms
464,160 KB
testcase_19 AC 363 ms
485,076 KB
testcase_20 AC 350 ms
482,432 KB
testcase_21 MLE -
testcase_22 AC 269 ms
386,020 KB
testcase_23 AC 381 ms
510,848 KB
testcase_24 AC 365 ms
498,188 KB
testcase_25 AC 251 ms
375,384 KB
testcase_26 AC 255 ms
379,040 KB
testcase_27 AC 246 ms
372,144 KB
testcase_28 MLE -
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 1 ms
6,816 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 3 ms
7,512 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 8 ms
36,200 KB
testcase_35 AC 13 ms
58,724 KB
testcase_36 AC 14 ms
62,872 KB
testcase_37 AC 16 ms
72,920 KB
testcase_38 AC 64 ms
195,984 KB
testcase_39 AC 83 ms
223,768 KB
testcase_40 AC 232 ms
358,088 KB
testcase_41 AC 118 ms
278,232 KB
testcase_42 AC 69 ms
204,196 KB
testcase_43 AC 71 ms
201,944 KB
testcase_44 MLE -
testcase_45 AC 50 ms
178,756 KB
testcase_46 AC 91 ms
232,716 KB
testcase_47 MLE -
testcase_48 AC 269 ms
395,940 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