結果
問題 | No.978 Fibonacci Convolution Easy |
ユーザー | Apppp11 |
提出日時 | 2020-02-01 02:26:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 563 bytes |
コンパイル時間 | 487 ms |
コンパイル使用メモリ | 67,352 KB |
実行使用メモリ | 19,104 KB |
最終ジャッジ日時 | 2024-09-17 20:48:59 |
合計ジャッジ時間 | 1,570 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | AC | 8 ms
7,408 KB |
testcase_03 | WA | - |
testcase_04 | AC | 11 ms
8,228 KB |
testcase_05 | AC | 3 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | AC | 21 ms
13,244 KB |
testcase_08 | AC | 14 ms
11,416 KB |
testcase_09 | AC | 23 ms
15,700 KB |
testcase_10 | WA | - |
testcase_11 | AC | 11 ms
8,420 KB |
testcase_12 | AC | 3 ms
6,944 KB |
testcase_13 | WA | - |
testcase_14 | AC | 4 ms
6,944 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 30 ms
18,968 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,940 KB |
ソースコード
#include <iostream> #include <algorithm> using namespace std; long long a[2000000],p,n,sum=0,expsum=0; const long long MOD=1000000007; bool oe=false; long long llmod(long long x){ oe=(oe^((x/MOD)%2)); return x%MOD; } int main(void){ // Your code here! cin>>n>>p; for(long long i=0;i<n;i++){ if(i<2)a[i]=i; else a[i]=llmod(llmod(a[i-1]*p)+a[i-2]); sum=llmod(sum+a[i]); expsum=llmod(expsum+llmod(a[i]*a[i])); } cout<<llmod((llmod(llmod(sum*sum)+expsum)+(oe?MOD:0))/2)<<endl; return 0; }