結果

問題 No.314 ケンケンパ
ユーザー highdhighd
提出日時 2016-08-30 11:10:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 718 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 63,984 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-26 17:27:29
合計ジャッジ時間 1,192 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
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 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:25:18: warning: 'front_sum' may be used uninitialized [-Wmaybe-uninitialized]
   25 |         front_sum+=front[i] % 1000000007;
      |         ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
main.cpp:23:16: note: 'front_sum' was declared here
   23 |     }    int32 front_sum;
      |                ^~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <cstdint>

typedef int_fast32_t int32;
int main() {
    int32 front[3]={0,1,0};
    int32 back[3]={1,0,0};
    int32 n;
    std::cin>>n;
    std::cout<<"n="<<n<<std::endl;
    if(n==1){
	std::cout<<1<<std::endl;
        return 0;
    }
    n-=2;
    for(int32 i=0;i<n;i++){
	back[0]=front[0] % 1000000007;
	back[1]=front[1] % 1000000007;
	back[2]=front[2] % 1000000007;
	front[0]=back[2];
	front[1]=back[0]+back[2];
	front[2]=back[1];
    }    int32 front_sum;
    for(int i=0;i<3;i++){
	front_sum+=front[i] % 1000000007;
    }
    front_sum%=1000000007;
    int32 back_sum=(back[0]+back[1]+back[2]) % 1000000007;    std::cout<<(back_sum+front_sum) % 1000000007<<std::endl;
    return 0;
}
0