結果

問題 No.129 お年玉(2)
ユーザー recososorecososo
提出日時 2021-05-25 18:30:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,088 ms / 5,000 ms
コード長 1,035 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 204,280 KB
実行使用メモリ 394,880 KB
最終ジャッジ日時 2024-10-14 09:16:24
合計ジャッジ時間 27,650 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
394,492 KB
testcase_01 AC 287 ms
394,732 KB
testcase_02 AC 281 ms
394,396 KB
testcase_03 AC 285 ms
394,412 KB
testcase_04 AC 284 ms
394,392 KB
testcase_05 AC 379 ms
394,564 KB
testcase_06 AC 748 ms
394,880 KB
testcase_07 AC 727 ms
394,680 KB
testcase_08 AC 365 ms
394,624 KB
testcase_09 AC 844 ms
394,752 KB
testcase_10 AC 664 ms
394,752 KB
testcase_11 AC 591 ms
394,724 KB
testcase_12 AC 401 ms
394,648 KB
testcase_13 AC 374 ms
394,660 KB
testcase_14 AC 790 ms
394,752 KB
testcase_15 AC 678 ms
394,744 KB
testcase_16 AC 708 ms
394,880 KB
testcase_17 AC 839 ms
394,752 KB
testcase_18 AC 630 ms
394,664 KB
testcase_19 AC 440 ms
394,844 KB
testcase_20 AC 821 ms
394,804 KB
testcase_21 AC 1,002 ms
394,752 KB
testcase_22 AC 558 ms
394,736 KB
testcase_23 AC 729 ms
394,700 KB
testcase_24 AC 355 ms
394,816 KB
testcase_25 AC 619 ms
394,752 KB
testcase_26 AC 472 ms
394,732 KB
testcase_27 AC 490 ms
394,624 KB
testcase_28 AC 1,088 ms
394,752 KB
testcase_29 AC 287 ms
394,368 KB
testcase_30 AC 285 ms
394,272 KB
testcase_31 AC 284 ms
394,368 KB
testcase_32 AC 283 ms
394,392 KB
testcase_33 AC 288 ms
394,396 KB
testcase_34 AC 287 ms
394,368 KB
testcase_35 AC 284 ms
394,420 KB
testcase_36 AC 290 ms
394,368 KB
testcase_37 AC 291 ms
394,432 KB
testcase_38 AC 335 ms
394,668 KB
testcase_39 AC 369 ms
394,584 KB
testcase_40 AC 583 ms
394,716 KB
testcase_41 AC 427 ms
394,624 KB
testcase_42 AC 331 ms
394,552 KB
testcase_43 AC 318 ms
394,552 KB
testcase_44 AC 499 ms
394,856 KB
testcase_45 AC 310 ms
394,368 KB
testcase_46 AC 333 ms
394,592 KB
testcase_47 AC 657 ms
394,852 KB
testcase_48 AC 385 ms
394,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
#define REP(i, n) for (int i = 0; i < (n); ++i)
#define REPR(i, n) for (int i = n - 1; i >= 0; --i)
#define FOR(i, m, n) for (int i = m; i < n; ++i)
#define FORR(i, m, n) for (int i = m; i >= n; --i)
#define ALL(v) (v).begin(),(v).end()
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
const ll INF=1LL<<60;
const int inf=(1<<30)-1;
const int mod=1e9;
int dx[8]={1,0,-1,0,-1,-1,1,1};
int dy[8]={0,1,0,-1,-1,1,-1,1};
const int nmax=10001;
vector<vector<int>> c(nmax,vector<int>(nmax,-1));
int com(int a,int b){
  if(c[a][b]>=0){
    return c[a][b];
  }
  if(a==b||b==0){
    return 1;
  }
  if(a<b||a<0){
    return 0;
  }
  return c[a][b]=(com(a-1,b-1)+com(a-1,b))%mod;
}
int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll n,m;cin >> n >> m;
    n/=1000;
    ll d=n%m;
    cout << com(m,d) << endl;
}
0