結果

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

ソースコード

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;
  if (n == 1) {
    P(1);
  }else{
  vector<int> 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];
  }

  cout << v[n] - v[n-2] << "\n";
}
  return 0;
}
0