結果

問題 No.129 お年玉(2)
ユーザー 0w10w1
提出日時 2016-11-27 17:45:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 574 ms / 5,000 ms
コード長 491 bytes
コンパイル時間 1,745 ms
コンパイル使用メモリ 170,700 KB
実行使用メモリ 394,752 KB
最終ジャッジ日時 2024-11-28 00:37:58
合計ジャッジ時間 10,548 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
9,344 KB
testcase_01 AC 574 ms
394,752 KB
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 191 ms
137,216 KB
testcase_06 AC 157 ms
111,744 KB
testcase_07 AC 292 ms
201,984 KB
testcase_08 AC 276 ms
194,560 KB
testcase_09 AC 138 ms
99,072 KB
testcase_10 AC 324 ms
229,632 KB
testcase_11 AC 166 ms
117,504 KB
testcase_12 AC 22 ms
17,024 KB
testcase_13 AC 16 ms
12,888 KB
testcase_14 AC 160 ms
113,792 KB
testcase_15 AC 136 ms
97,152 KB
testcase_16 AC 190 ms
134,528 KB
testcase_17 AC 120 ms
86,272 KB
testcase_18 AC 286 ms
201,472 KB
testcase_19 AC 385 ms
270,848 KB
testcase_20 AC 237 ms
167,808 KB
testcase_21 AC 160 ms
106,752 KB
testcase_22 AC 196 ms
137,728 KB
testcase_23 AC 320 ms
225,920 KB
testcase_24 AC 437 ms
304,896 KB
testcase_25 AC 155 ms
111,104 KB
testcase_26 AC 249 ms
161,408 KB
testcase_27 AC 212 ms
149,760 KB
testcase_28 AC 247 ms
173,952 KB
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 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 4 ms
5,248 KB
testcase_37 AC 3 ms
5,248 KB
testcase_38 AC 28 ms
21,248 KB
testcase_39 AC 29 ms
21,888 KB
testcase_40 AC 76 ms
56,576 KB
testcase_41 AC 100 ms
72,448 KB
testcase_42 AC 46 ms
34,176 KB
testcase_43 AC 11 ms
9,856 KB
testcase_44 AC 481 ms
336,768 KB
testcase_45 AC 25 ms
19,712 KB
testcase_46 AC 13 ms
11,520 KB
testcase_47 AC 418 ms
285,952 KB
testcase_48 AC 300 ms
200,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;

const int MOD = ( int ) 1e9;

signed main(){
  ll N; int M; cin >> N >> M;
  N = N / 1000 * 1000;
  N %= M * 1000;
  N /= 1000;
  vector< vector< int > > C( M + 5, vector< int >( N + 5 ) );
  C[ 0 ][ 0 ] = 1;
  for( int i = 0; i <= M; ++i )
    for( int j = 0; j <= N; ++j )
      ( C[ i + 1 ][ j ] += C[ i ][ j ] ) %= MOD,
      ( C[ i + 1 ][ j + 1 ] += C[ i ][ j ] ) %= MOD;
  cout << C[ M ][ N ] << endl;
  return 0;
}
0