結果

問題 No.129 お年玉(2)
ユーザー motimoti
提出日時 2015-07-17 11:53:03
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 486 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 767 ms
コンパイル使用メモリ 78,628 KB
実行使用メモリ 433,280 KB
最終ジャッジ日時 2024-05-05 22:48:15
合計ジャッジ時間 19,932 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 449 ms
433,152 KB
testcase_01 AC 486 ms
433,152 KB
testcase_02 AC 449 ms
433,024 KB
testcase_03 AC 416 ms
433,152 KB
testcase_04 AC 364 ms
433,152 KB
testcase_05 AC 367 ms
433,152 KB
testcase_06 AC 366 ms
433,152 KB
testcase_07 AC 371 ms
433,152 KB
testcase_08 AC 364 ms
433,024 KB
testcase_09 AC 363 ms
433,152 KB
testcase_10 AC 366 ms
433,152 KB
testcase_11 AC 363 ms
433,024 KB
testcase_12 AC 370 ms
433,152 KB
testcase_13 AC 366 ms
433,152 KB
testcase_14 AC 365 ms
433,152 KB
testcase_15 AC 368 ms
433,024 KB
testcase_16 AC 364 ms
433,152 KB
testcase_17 AC 364 ms
433,280 KB
testcase_18 AC 369 ms
433,024 KB
testcase_19 AC 366 ms
433,152 KB
testcase_20 AC 377 ms
433,152 KB
testcase_21 AC 378 ms
433,152 KB
testcase_22 AC 361 ms
433,152 KB
testcase_23 AC 365 ms
433,152 KB
testcase_24 AC 377 ms
433,024 KB
testcase_25 AC 459 ms
433,152 KB
testcase_26 AC 452 ms
433,152 KB
testcase_27 AC 372 ms
433,152 KB
testcase_28 AC 367 ms
433,024 KB
testcase_29 AC 363 ms
433,152 KB
testcase_30 AC 362 ms
433,152 KB
testcase_31 AC 363 ms
433,024 KB
testcase_32 AC 422 ms
433,152 KB
testcase_33 AC 452 ms
433,152 KB
testcase_34 AC 449 ms
433,152 KB
testcase_35 AC 453 ms
433,152 KB
testcase_36 AC 442 ms
433,152 KB
testcase_37 AC 447 ms
433,280 KB
testcase_38 AC 439 ms
433,152 KB
testcase_39 AC 450 ms
433,024 KB
testcase_40 AC 453 ms
433,280 KB
testcase_41 AC 448 ms
433,024 KB
testcase_42 AC 450 ms
433,024 KB
testcase_43 AC 401 ms
433,024 KB
testcase_44 AC 370 ms
433,152 KB
testcase_45 AC 365 ms
433,024 KB
testcase_46 AC 362 ms
433,024 KB
testcase_47 AC 363 ms
433,024 KB
testcase_48 AC 366 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