結果

問題 No.978 Fibonacci Convolution Easy
ユーザー 37zigen37zigen
提出日時 2020-01-31 21:57:07
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 788 bytes
コンパイル時間 2,345 ms
コンパイル使用メモリ 77,912 KB
実行使用メモリ 88,196 KB
最終ジャッジ日時 2024-09-17 08:04:16
合計ジャッジ時間 6,113 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,032 KB
testcase_01 AC 145 ms
68,568 KB
testcase_02 AC 137 ms
57,968 KB
testcase_03 AC 191 ms
85,916 KB
testcase_04 AC 149 ms
60,828 KB
testcase_05 AC 127 ms
55,220 KB
testcase_06 AC 163 ms
67,456 KB
testcase_07 AC 179 ms
75,908 KB
testcase_08 AC 151 ms
68,636 KB
testcase_09 AC 182 ms
79,920 KB
testcase_10 AC 206 ms
88,196 KB
testcase_11 AC 144 ms
65,584 KB
testcase_12 AC 137 ms
56,056 KB
testcase_13 AC 147 ms
66,272 KB
testcase_14 AC 139 ms
56,116 KB
testcase_15 AC 159 ms
69,324 KB
testcase_16 AC 187 ms
87,876 KB
testcase_17 AC 195 ms
87,824 KB
testcase_18 RE -
testcase_19 AC 119 ms
54,084 KB
testcase_20 AC 117 ms
54,048 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[N+1];
		long[] s=new long[N+1];
		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