結果

問題 No.980 Fibonacci Convolution Hard
ユーザー 37zigen37zigen
提出日時 2020-01-31 22:31:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,134 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 2,463 ms
コンパイル使用メモリ 77,920 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-09-17 11:34:48
合計ジャッジ時間 24,093 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,033 ms
74,388 KB
testcase_01 AC 1,069 ms
76,416 KB
testcase_02 AC 1,092 ms
75,148 KB
testcase_03 AC 1,085 ms
75,432 KB
testcase_04 AC 1,084 ms
75,176 KB
testcase_05 AC 1,061 ms
74,592 KB
testcase_06 AC 1,081 ms
74,828 KB
testcase_07 AC 1,103 ms
75,412 KB
testcase_08 AC 1,085 ms
75,248 KB
testcase_09 AC 1,134 ms
75,444 KB
testcase_10 AC 1,124 ms
75,148 KB
testcase_11 AC 1,057 ms
75,372 KB
testcase_12 AC 1,092 ms
76,936 KB
testcase_13 AC 1,062 ms
77,056 KB
testcase_14 AC 1,067 ms
75,144 KB
testcase_15 AC 1,065 ms
74,384 KB
testcase_16 AC 1,049 ms
75,608 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();
	}

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

}
0