結果
問題 | No.314 ケンケンパ |
ユーザー | nassy_moten |
提出日時 | 2018-11-17 22:28:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 453 bytes |
コンパイル時間 | 565 ms |
コンパイル使用メモリ | 60,492 KB |
実行使用メモリ | 26,740 KB |
最終ジャッジ日時 | 2024-06-06 20:43:12 |
合計ジャッジ時間 | 1,426 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 19 ms
26,420 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | WA | - |
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 | AC | 11 ms
14,720 KB |
testcase_19 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:19:10: warning: ‘a’ is used uninitialized [-Wuninitialized] 19 | a+=dp[n][i]%bba; | ~^~~~~~~~~~~~~~
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; long long dp[1001000][3]={}; int main(){ int bba=1000000007; int n; cin>>n; dp[1][1]=1; dp[1][0]=dp[1][2]=0; for(int i=1;i<=n+5;i++){ dp[i][0]+=(dp[i-1][1]+dp[i-1][2])%bba; dp[i][1]+=dp[i-1][0]%bba; dp[i][2]+=dp[i-1][1]%bba; } long long a; for(int i=0;i<3;i++){ a+=dp[n][i]%bba; } cout<<a<<endl; }