結果

問題 No.314 ケンケンパ
ユーザー PicklesSuperiorPicklesSuperior
提出日時 2019-02-21 14:14:40
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 504 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 54,516 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-28 21:48:53
合計ジャッジ時間 1,212 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
k1
k2 p
p k1
k1 k2 p
k2 p p k1
p k1 k1 k2 p
k1 k2 p k2 p p k1
*/
#include<iostream>
using namespace std;
int k1=1,k2=0,p=0,mod=1e9+7;

void step(){
    int tmp_k1,tmp_k2,tmp_p;

    tmp_k1=k1;
    tmp_k2=k2;
    tmp_p=p;

    k1=tmp_p;
    k2=tmp_k1;
    p=(tmp_k1+tmp_k2) % mod;
}

int main(){
    int N,ans;
    cin >> N;

    while(--N){
        step();
    }
    cout<<"k1:"<<k1<<" k2:"<<k2<<" p:"<<p<<" mod:"<<mod<<endl;
    ans=((k1+k2)%mod +p) % (mod);
    cout << ans << endl;

    return 0;
}
0