結果

問題 No.980 Fibonacci Convolution Hard
ユーザー 37zigen37zigen
提出日時 2020-01-31 22:35:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,103 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 1,854 ms
コンパイル使用メモリ 77,188 KB
実行使用メモリ 76,076 KB
最終ジャッジ日時 2024-09-17 11:37:19
合計ジャッジ時間 21,711 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 995 ms
74,428 KB
testcase_01 AC 970 ms
75,244 KB
testcase_02 AC 945 ms
75,676 KB
testcase_03 AC 1,103 ms
75,080 KB
testcase_04 AC 942 ms
74,940 KB
testcase_05 AC 1,015 ms
74,960 KB
testcase_06 AC 1,010 ms
74,960 KB
testcase_07 AC 1,008 ms
75,112 KB
testcase_08 AC 1,006 ms
74,416 KB
testcase_09 AC 1,055 ms
75,328 KB
testcase_10 AC 1,017 ms
74,900 KB
testcase_11 AC 976 ms
74,456 KB
testcase_12 AC 1,001 ms
76,076 KB
testcase_13 AC 966 ms
75,052 KB
testcase_14 AC 973 ms
74,056 KB
testcase_15 AC 1,001 ms
75,280 KB
testcase_16 AC 934 ms
75,024 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 M = (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[] b=new long[(int)2e6+1];
		b[4]=1;
		for(int i=5;i<b.length;++i)b[i]=(2*p*b[i-1]%M+(2-p*p%M)*b[i-2]%M-2*p%M*b[i-3]%M-b[i-4])%M;
		PrintWriter pw=new PrintWriter(System.out);
		for(int i=0;i<Q;++i){
			q[i]=sc.nextInt();
			pw.println((b[q[i]]+M)%M);
		}
		pw.close();
	}
}
0