結果

問題 No.554 recurrence formula
ユーザー kaito_tateyamakaito_tateyama
提出日時 2017-08-15 12:33:19
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 516 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 74,172 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-21 12:29:40
合計ジャッジ時間 1,201 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

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