結果

問題 No.129 お年玉(2)
ユーザー nenuonnenuon
提出日時 2017-06-22 15:01:12
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 527 ms / 5,000 ms
コード長 806 bytes
コンパイル時間 844 ms
コンパイル使用メモリ 93,108 KB
実行使用メモリ 425,344 KB
最終ジャッジ日時 2024-11-28 00:56:10
合計ジャッジ時間 26,865 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 46
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <iostream>
#include <map>
#include <cmath>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
#include <stdlib.h>
#include <stdio.h>
#include <bitset>
using namespace std;
#define FOR(I,A,B) for(int I = (A); I < (B); ++I)
vector<vector<long long> > dp(10001);
int main(){
  long long n, m;
  cin >> n >> m;
  n %= m * 1000;
  n /= 1000;
  dp[1].push_back(1);
  dp[1].push_back(1);
  FOR(i,1,10000){
    FOR(j,0,i+2){
      if(j == 0) dp[i+1].push_back(dp[i][j]);
      else if(j == i+1) dp[i+1].push_back(dp[i][i]);
      else dp[i+1].push_back(dp[i][j-1] + dp[i][j]);
      dp[i+1][j] %= 1000000000;
    }
  }
  if(n==0){
    cout << 1 << endl;
  } else {
    cout << dp[m][n] << endl;
  }
  return 0;
}
0