結果

問題 No.129 お年玉(2)
ユーザー motimoti
提出日時 2015-07-17 11:53:03
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 362 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 1,183 ms
コンパイル使用メモリ 79,148 KB
実行使用メモリ 433,152 KB
最終ジャッジ日時 2024-11-28 00:06:40
合計ジャッジ時間 19,317 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
433,024 KB
testcase_01 AC 349 ms
433,024 KB
testcase_02 AC 350 ms
433,024 KB
testcase_03 AC 340 ms
433,024 KB
testcase_04 AC 344 ms
433,024 KB
testcase_05 AC 344 ms
433,024 KB
testcase_06 AC 341 ms
433,024 KB
testcase_07 AC 353 ms
433,024 KB
testcase_08 AC 348 ms
433,024 KB
testcase_09 AC 357 ms
433,024 KB
testcase_10 AC 348 ms
433,024 KB
testcase_11 AC 356 ms
433,024 KB
testcase_12 AC 353 ms
433,024 KB
testcase_13 AC 350 ms
433,024 KB
testcase_14 AC 343 ms
433,152 KB
testcase_15 AC 351 ms
433,024 KB
testcase_16 AC 342 ms
433,024 KB
testcase_17 AC 345 ms
433,024 KB
testcase_18 AC 343 ms
433,024 KB
testcase_19 AC 342 ms
432,896 KB
testcase_20 AC 344 ms
433,024 KB
testcase_21 AC 353 ms
433,024 KB
testcase_22 AC 344 ms
433,024 KB
testcase_23 AC 343 ms
433,024 KB
testcase_24 AC 347 ms
433,024 KB
testcase_25 AC 349 ms
432,896 KB
testcase_26 AC 353 ms
433,152 KB
testcase_27 AC 341 ms
433,024 KB
testcase_28 AC 340 ms
433,024 KB
testcase_29 AC 346 ms
433,024 KB
testcase_30 AC 342 ms
433,024 KB
testcase_31 AC 352 ms
433,152 KB
testcase_32 AC 362 ms
433,024 KB
testcase_33 AC 345 ms
433,024 KB
testcase_34 AC 342 ms
432,896 KB
testcase_35 AC 359 ms
432,896 KB
testcase_36 AC 346 ms
433,024 KB
testcase_37 AC 344 ms
433,024 KB
testcase_38 AC 346 ms
433,024 KB
testcase_39 AC 341 ms
433,024 KB
testcase_40 AC 343 ms
433,024 KB
testcase_41 AC 345 ms
433,024 KB
testcase_42 AC 342 ms
433,024 KB
testcase_43 AC 344 ms
433,152 KB
testcase_44 AC 348 ms
433,024 KB
testcase_45 AC 346 ms
433,152 KB
testcase_46 AC 346 ms
433,024 KB
testcase_47 AC 353 ms
433,024 KB
testcase_48 AC 347 ms
433,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
#include <complex>
#include <queue>
#include <set>
#include <map>

using namespace std;

#define REP(i,a,b) for(int i=a;i<(int)b;i++)
#define rep(i,n) REP(i,0,n)

typedef long long ll;

int const MOD = 1e9;

ll dp[10001][10001];

int main() {

  ll N, M;
  cin >> N >> M;
  N /= 1000;
  ll R = N % M;

  rep(i, 10001) {
    dp[i][i] = dp[i][0] = 1;
    REP(j, 1, i) {
      dp[i][j] = (dp[i-1][j] + dp[i-1][j-1]) % MOD;
    }
  }

  cout << dp[M][R] << endl;

  return 0;
}
0