結果

問題 No.129 お年玉(2)
ユーザー mint6421mint6421
提出日時 2019-07-02 23:59:29
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 405 ms / 5,000 ms
コード長 1,140 bytes
コンパイル時間 1,855 ms
コンパイル使用メモリ 161,636 KB
実行使用メモリ 394,368 KB
最終ジャッジ日時 2024-11-28 01:21:49
合計ジャッジ時間 11,480 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
22,528 KB
testcase_01 AC 405 ms
394,368 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 159 ms
162,560 KB
testcase_06 AC 255 ms
256,768 KB
testcase_07 AC 305 ms
314,624 KB
testcase_08 AC 205 ms
214,528 KB
testcase_09 AC 282 ms
289,792 KB
testcase_10 AC 316 ms
326,144 KB
testcase_11 AC 197 ms
205,696 KB
testcase_12 AC 257 ms
268,800 KB
testcase_13 AC 272 ms
281,344 KB
testcase_14 AC 260 ms
271,616 KB
testcase_15 AC 213 ms
223,488 KB
testcase_16 AC 244 ms
254,080 KB
testcase_17 AC 300 ms
308,608 KB
testcase_18 AC 281 ms
290,688 KB
testcase_19 AC 300 ms
310,144 KB
testcase_20 AC 301 ms
307,712 KB
testcase_21 AC 380 ms
385,024 KB
testcase_22 AC 207 ms
216,832 KB
testcase_23 AC 329 ms
336,128 KB
testcase_24 AC 314 ms
322,816 KB
testcase_25 AC 197 ms
206,976 KB
testcase_26 AC 202 ms
211,968 KB
testcase_27 AC 197 ms
205,568 KB
testcase_28 AC 382 ms
388,864 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 4 ms
5,504 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 4 ms
5,376 KB
testcase_36 AC 4 ms
5,760 KB
testcase_37 AC 5 ms
6,400 KB
testcase_38 AC 42 ms
44,672 KB
testcase_39 AC 64 ms
67,968 KB
testcase_40 AC 183 ms
192,128 KB
testcase_41 AC 111 ms
116,992 KB
testcase_42 AC 46 ms
50,816 KB
testcase_43 AC 46 ms
49,792 KB
testcase_44 AC 382 ms
391,040 KB
testcase_45 AC 27 ms
28,544 KB
testcase_46 AC 72 ms
75,904 KB
testcase_47 AC 373 ms
377,600 KB
testcase_48 AC 218 ms
226,560 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:45:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
   45 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define inf 1000000000
#define INF 1000000000000000
#define ll long long
#define ull unsigned long long
#define M (int)(1e9)
#define P pair<int,int>
#define PLL pair<ll,ll>
#define FOR(i,m,n) for(int i=(int)m;i<(int)n;i++)
#define RFOR(i,m,n) for(int i=(int)m;i>=(int)n;i--)
#define rep(i,n) FOR(i,0,n)
#define rrep(i,n) RFOR(i,n,0)
#define all(a) a.begin(),a.end()
#define IN(a,n) rep(i,n){ cin>>a[i]; }
const int vx[4] = {0,1,0,-1};
const int vy[4] = {1,0,-1,0};
#define PI 3.14159265
#define F first
#define S second
#define PB push_back
#define EB emplace_back

void init(){
  cin.tie(0);
  ios::sync_with_stdio(false);
}

vector<vector<int>> paskal(int n){
  vector<vector<int>> c(n+1,vector<int>(n+1,0));

  rep(i,n+1){
    rep(j,n+1){
      if(j>i) break;
      if(i==0||j==0) c[i][j]=1;
      else c[i][j]=c[i-1][j-1]+c[i-1][j];
      c[i][j]%=M;
    }
  }

  return c;
}

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

  int k=(n/1000)%m;

  vector<vector<int>> c=paskal(m);

  /*
  rep(i,10){
    rep(j,10){
      cout<<c[i][j]<<' ';
    }
    cout<<endl;
  }
  */

  cout<<c[m][k]<<endl;

}
0