結果

問題 No.891 隣接3項間の漸化式
ユーザー queeequeee
提出日時 2020-01-04 11:32:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 352 bytes
コンパイル時間 583 ms
コンパイル使用メモリ 64,212 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-22 20:07:06
合計ジャッジ時間 43,299 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 2 ms
10,020 KB
testcase_02 AC 2 ms
10,020 KB
testcase_03 AC 33 ms
10,148 KB
testcase_04 AC 64 ms
13,632 KB
testcase_05 AC 64 ms
10,020 KB
testcase_06 AC 84 ms
13,636 KB
testcase_07 AC 58 ms
10,020 KB
testcase_08 AC 52 ms
13,632 KB
testcase_09 AC 67 ms
10,024 KB
testcase_10 AC 13 ms
13,632 KB
testcase_11 AC 33 ms
10,016 KB
testcase_12 AC 95 ms
13,636 KB
testcase_13 AC 2 ms
10,016 KB
testcase_14 AC 2 ms
13,636 KB
testcase_15 AC 2 ms
10,020 KB
testcase_16 AC 62 ms
13,636 KB
testcase_17 AC 2 ms
10,020 KB
testcase_18 AC 2 ms
13,636 KB
testcase_19 AC 9 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 11 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 1 ms
6,820 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 1,666 ms
6,816 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 1,695 ms
6,820 KB
testcase_34 AC 1,495 ms
6,820 KB
testcase_35 TLE -
testcase_36 AC 730 ms
6,820 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 1,040 ms
6,820 KB
testcase_41 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
typedef long long ll;

const ll mod = 1e9+7;

int main(void){
  ll a,b,n; cin >>a>>b>>n;
  if (n<=1) {cout<<n<<endl; return 0;}
  ll p[3]={0,1, -1};
  for(int i=2; i<=n; i++) {
    p[i%3] = (b*p[(i+1)%3] + a*p[(i+2)%3])%mod;
    //p[0]=p[1]; p[1]=p[2]; p[2]=(b*p[0]+a*p[1]) % mod;
  }
  
  cout<<p[n%3]<<endl;
}
0