結果

問題 No.129 お年玉(2)
ユーザー 0w10w1
提出日時 2016-11-27 17:45:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 523 ms / 5,000 ms
コード長 491 bytes
コンパイル時間 2,730 ms
コンパイル使用メモリ 170,612 KB
実行使用メモリ 394,624 KB
最終ジャッジ日時 2024-05-05 23:12:15
合計ジャッジ時間 9,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
9,344 KB
testcase_01 AC 523 ms
394,624 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 180 ms
137,216 KB
testcase_06 AC 144 ms
111,744 KB
testcase_07 AC 264 ms
202,112 KB
testcase_08 AC 256 ms
194,560 KB
testcase_09 AC 128 ms
99,072 KB
testcase_10 AC 301 ms
229,632 KB
testcase_11 AC 155 ms
117,504 KB
testcase_12 AC 19 ms
17,024 KB
testcase_13 AC 13 ms
12,800 KB
testcase_14 AC 147 ms
113,792 KB
testcase_15 AC 123 ms
97,152 KB
testcase_16 AC 180 ms
134,400 KB
testcase_17 AC 110 ms
86,272 KB
testcase_18 AC 263 ms
201,344 KB
testcase_19 AC 363 ms
270,720 KB
testcase_20 AC 225 ms
167,808 KB
testcase_21 AC 140 ms
106,752 KB
testcase_22 AC 178 ms
137,728 KB
testcase_23 AC 300 ms
225,920 KB
testcase_24 AC 400 ms
304,896 KB
testcase_25 AC 144 ms
111,104 KB
testcase_26 AC 214 ms
161,408 KB
testcase_27 AC 199 ms
149,760 KB
testcase_28 AC 227 ms
173,952 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 25 ms
21,376 KB
testcase_39 AC 24 ms
21,888 KB
testcase_40 AC 67 ms
56,576 KB
testcase_41 AC 93 ms
72,320 KB
testcase_42 AC 41 ms
34,048 KB
testcase_43 AC 10 ms
9,856 KB
testcase_44 AC 444 ms
336,768 KB
testcase_45 AC 23 ms
19,712 KB
testcase_46 AC 11 ms
11,392 KB
testcase_47 AC 378 ms
285,952 KB
testcase_48 AC 266 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