結果

問題 No.978 Fibonacci Convolution Easy
ユーザー 37zigen37zigen
提出日時 2020-01-31 22:00:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 802 bytes
コンパイル時間 2,260 ms
コンパイル使用メモリ 78,140 KB
実行使用メモリ 90,032 KB
最終ジャッジ日時 2024-09-18 20:58:31
合計ジャッジ時間 7,510 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
89,460 KB
testcase_01 AC 208 ms
88,988 KB
testcase_02 AC 215 ms
89,552 KB
testcase_03 AC 213 ms
89,040 KB
testcase_04 AC 220 ms
89,600 KB
testcase_05 AC 219 ms
89,760 KB
testcase_06 AC 224 ms
89,780 KB
testcase_07 AC 221 ms
89,680 KB
testcase_08 AC 220 ms
89,824 KB
testcase_09 AC 216 ms
88,828 KB
testcase_10 AC 232 ms
89,716 KB
testcase_11 AC 222 ms
89,808 KB
testcase_12 AC 214 ms
89,808 KB
testcase_13 AC 218 ms
90,032 KB
testcase_14 AC 210 ms
89,612 KB
testcase_15 AC 215 ms
88,988 KB
testcase_16 AC 220 ms
89,364 KB
testcase_17 AC 229 ms
89,676 KB
testcase_18 AC 219 ms
89,820 KB
testcase_19 AC 221 ms
89,752 KB
testcase_20 AC 197 ms
88,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

// This file is a "Hello, world!" in Java language by OpenJDK for wandbox.

class Main
{
	public static void main(String[] args)
	{
		new Main().run();
	}
	
	final long m=(long)1e9+7;
	
	void run(){
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		long p=sc.nextLong();
		long[] a=new long[(int)(3e6)];
		long[] s=new long[(int)(3e6)];
		a[1]=0;
		a[2]=1;
		for(int i=3;i<a.length;++i)a[i]=(p*a[i-1]%m+a[i-2])%m;
		for(int i=1;i<a.length;++i)s[i]=(s[i-1]+a[i])%m;
		long ans=0;
		for(int i=1;i<=N;++i){
			ans=(ans+s[i]*a[i]%m)%m;
		}
		System.out.println(ans);
	}
	
	void tr(Object...o){System.out.println(Arrays.deepToString(o));}
}
// OpenJDK reference:
//   http://openjdk.java.net/

// Java language references:
//   http://docs.oracle.com/javase
0