結果

問題 No.554 recurrence formula
ユーザー kaito_tateyama
提出日時 2017-08-15 12:38:13
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 776 ms
コンパイル使用メモリ 73,888 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-13 10:57:01
合計ジャッジ時間 1,338 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <algorithm>
//---------------------------
using namespace std;
//---------------------------
#define REP(i,n) for(int i = 0; i < (n); i++)
#define P(x) cout << (x) << "\n"
//---------------------------

int main(){


  int n;cin >> n;
  long long m = 1e9+7;
  long long ans;
  if (n == 1) {
    ans =1;
  }else{
  vector<long long> v(n+1);
  v[0]=0;
  v[1]=1;
  for (int i = 2; i < n+1; i++) {
    v[i] = (i * v[i-1] + v[i-2]) %m;
  }
  ans = (v[n] - v[n-2]+m)%m;}
  cout << ans << "\n";
  return 0;
}
0