結果
問題 |
No.44 DPなすごろく
|
ユーザー |
![]() |
提出日時 | 2016-10-23 20:13:29 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 269 bytes |
コンパイル時間 | 478 ms |
コンパイル使用メモリ | 60,540 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-24 02:04:53 |
合計ジャッジ時間 | 1,302 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 20 |
ソースコード
#include <iostream> #include <math.h> #include <string> #include <algorithm> using namespace std; int main(){ int n; cin >> n; long long a[51]; a[0] = 1; a[1] = 1; for (int i = 2; i <= n; i++){ a[i] = a[i - 1] + a[i - 2]; } cout << a[n] << endl; return 0; }