結果

問題 No.129 お年玉(2)
ユーザー imgry22imgry22
提出日時 2015-05-13 14:25:37
言語 C++11
(gcc 11.4.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,342 bytes
コンパイル時間 1,270 ms
コンパイル使用メモリ 159,416 KB
実行使用メモリ 635,172 KB
最終ジャッジ日時 2024-10-13 09:26:33
合計ジャッジ時間 11,569 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
31,488 KB
testcase_01 MLE -
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 164 ms
187,904 KB
testcase_06 AC 269 ms
288,768 KB
testcase_07 MLE -
testcase_08 AC 210 ms
243,968 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 188 ms
234,496 KB
testcase_12 AC 242 ms
301,696 KB
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 201 ms
253,440 KB
testcase_16 AC 226 ms
286,080 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 195 ms
246,656 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 190 ms
235,904 KB
testcase_26 AC 192 ms
241,280 KB
testcase_27 AC 186 ms
234,368 KB
testcase_28 MLE -
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 5 ms
8,704 KB
testcase_34 AC 3 ms
5,888 KB
testcase_35 AC 5 ms
8,320 KB
testcase_36 AC 5 ms
8,832 KB
testcase_37 AC 7 ms
10,240 KB
testcase_38 AC 45 ms
57,856 KB
testcase_39 AC 67 ms
84,224 KB
testcase_40 AC 175 ms
219,776 KB
testcase_41 AC 109 ms
138,752 KB
testcase_42 AC 52 ms
64,640 KB
testcase_43 AC 52 ms
63,872 KB
testcase_44 MLE -
testcase_45 AC 30 ms
38,912 KB
testcase_46 AC 72 ms
93,184 KB
testcase_47 MLE -
testcase_48 AC 207 ms
256,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

typedef long long int ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<pair<int, int> > vii;
#define rrep(i, m, n) for(int (i)=(m); (i)<(n);  (i)++)
#define erep(i, m, n) for(int (i)=(m); (i)<=(n); (i)++)
#define  rep(i, n)    for(int (i)=0; (i)<(n);  (i)++)
#define rrev(i, m, n) for(int (i)=(n)-1; (i)>=(m); (i)--)
#define erev(i, m, n) for(int (i)=(n); (i)>=(m); (i)--)
#define  rev(i, n)    for(int (i)=(n)-1; (i)>=0; (i)--)
#define vrep(i, c)    for(__typeof((c).begin())i=(c).begin(); i!=(c).end(); i++)
#define  ALL(v)       (v).begin(), (v).end()
#define pb            push_back
template<class T, class S> inline pair<T, S> mp(T x, S y){ return make_pair(x, y); }
template<class T, class S> inline bool minup(T& m, S x){ return m>(T)x ? (m=(T)x, true) : false; }
template<class T, class S> inline bool maxup(T& m, S x){ return m<(T)x ? (m=(T)x, true) : false; }

static const int    INF = 1000000000;
static const ll     MOD = 1000000000LL;
static const double EPS = 1E-12;


const int MAX_M = 10100;
ll n, m;
ll dp[MAX_M+1][MAX_M+1];

int main()
{
  cin >> n >> m;

  n =  (n - n / 1000LL / m * 1000 * m) / 1000;

  dp[0][0] = 1LL;
  erep(i, 0, m) erep(j, 0, i) dp[i+1][j+1] = (dp[i][j] + dp[i][j+1]) % MOD;

  cout << dp[(int)m+1][(int)n+1] << endl;

  return 0;
}
0