結果

問題 No.980 Fibonacci Convolution Hard
ユーザー 37zigen37zigen
提出日時 2020-01-31 22:28:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,241 ms / 2,000 ms
コード長 787 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 77,808 KB
実行使用メモリ 109,104 KB
最終ジャッジ日時 2024-09-17 11:34:23
合計ジャッジ時間 26,430 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,198 ms
109,104 KB
testcase_01 AC 1,213 ms
100,204 KB
testcase_02 AC 1,213 ms
107,064 KB
testcase_03 AC 1,196 ms
98,724 KB
testcase_04 AC 1,221 ms
99,388 KB
testcase_05 AC 1,218 ms
98,596 KB
testcase_06 AC 1,217 ms
98,568 KB
testcase_07 AC 1,214 ms
98,580 KB
testcase_08 AC 1,207 ms
98,988 KB
testcase_09 AC 1,241 ms
98,352 KB
testcase_10 AC 1,232 ms
97,996 KB
testcase_11 AC 1,224 ms
99,096 KB
testcase_12 AC 1,204 ms
97,688 KB
testcase_13 AC 1,224 ms
98,896 KB
testcase_14 AC 1,209 ms
99,324 KB
testcase_15 AC 1,211 ms
100,952 KB
testcase_16 AC 1,234 ms
98,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
import java.io.*;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	long MOD = (long) 1e9 + 7;

	void run() {
		Scanner sc = new Scanner(System.in);
		long p=sc.nextLong();
		int Q=sc.nextInt();
		int[] q=new int[Q];
		long[] a=new long[(int)2e6+1];
		long[] b=new long[(int)2e6+1];
		a[2]=1;
		b[4]=1;
		for(int i=3;i<a.length;++i)a[i]=(p*a[i-1]%MOD+a[i-2])%MOD;
		for(int i=5;i<b.length;++i)b[i]=(2*p*b[i-1]%MOD+(2-p*p%MOD)*b[i-2]%MOD-2*p%MOD*b[i-3]%MOD-b[i-4])%MOD;
		PrintWriter pw=new PrintWriter(System.out);
		for(int i=0;i<Q;++i){
			q[i]=sc.nextInt();
			pw.println((b[q[i]]+MOD)%MOD);
		}
		pw.close();
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0