結果

問題 No.978 Fibonacci Convolution Easy
ユーザー htensaihtensai
提出日時 2020-02-03 12:35:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 795 bytes
コンパイル時間 2,691 ms
コンパイル使用メモリ 74,340 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-09-18 21:40:33
合計ジャッジ時間 6,396 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,848 KB
testcase_01 AC 146 ms
54,248 KB
testcase_02 AC 144 ms
54,292 KB
testcase_03 AC 155 ms
54,152 KB
testcase_04 AC 146 ms
54,080 KB
testcase_05 AC 141 ms
54,064 KB
testcase_06 AC 151 ms
54,328 KB
testcase_07 AC 149 ms
54,244 KB
testcase_08 AC 147 ms
54,128 KB
testcase_09 AC 152 ms
54,056 KB
testcase_10 AC 156 ms
54,008 KB
testcase_11 AC 149 ms
54,004 KB
testcase_12 AC 147 ms
54,048 KB
testcase_13 AC 146 ms
53,884 KB
testcase_14 AC 144 ms
54,112 KB
testcase_15 AC 152 ms
54,228 KB
testcase_16 AC 157 ms
53,848 KB
testcase_17 AC 156 ms
54,128 KB
testcase_18 AC 134 ms
54,036 KB
testcase_19 AC 142 ms
54,208 KB
testcase_20 AC 132 ms
54,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int p = sc.nextInt();
        long prepre = 0;
        long pre = 1;
        long sum = 1;
        long total = 1;
        if (n == 1) {
            System.out.println(0);
            return;
        } else if (n == 1) {
            System.out.println(1);
            return;
        }
        for (int i = 3; i <= n; i++) {
            long x = pre * p + prepre;
            x %= MOD;
            sum += x;
            sum %= MOD;
            total += sum * x;
            total %= MOD;
            prepre = pre;
            pre = x;
        }
        System.out.println(total);
    }
}
0