結果
問題 | No.44 DPなすごろく |
ユーザー | vjudge1 |
提出日時 | 2024-02-20 02:24:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 257 bytes |
コンパイル時間 | 4,437 ms |
コンパイル使用メモリ | 164,544 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-29 03:22:08 |
合計ジャッジ時間 | 4,696 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
コンパイルメッセージ
main.cpp: In function 'long long int SFB()': main.cpp:12:1: warning: no return statement in function returning non-void [-Wreturn-type] 12 | } | ^ main.cpp:10:14: warning: iteration 48 invokes undefined behavior [-Waggressive-loop-optimizations] 10 | F[i] = F[i-1] + F[i-2]; | ~~~~~^~~~~~~~~~~~~~~~~ main.cpp:9:19: note: within this loop 9 | for(ll i=3 ; i<=51 ;i++){ | ~^~~~
ソースコード
#include<bits/stdc++.h> #define ll long long using namespace std; ll F[51]; ll SFB(){ F[1]=1; F[2]=1; for(ll i=3 ; i<=51 ;i++){ F[i] = F[i-1] + F[i-2]; } } int main(){ SFB(); int n; cin >>n; cout<<F[n+1]; return 0; }