結果

問題 No.891 隣接3項間の漸化式
ユーザー tentententen
提出日時 2022-08-29 14:43:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 2,021 bytes
コンパイル時間 4,403 ms
コンパイル使用メモリ 77,224 KB
実行使用メモリ 50,392 KB
最終ジャッジ日時 2024-11-06 12:20:29
合計ジャッジ時間 6,237 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,200 KB
testcase_01 AC 57 ms
49,884 KB
testcase_02 AC 56 ms
50,340 KB
testcase_03 AC 56 ms
49,996 KB
testcase_04 AC 55 ms
50,152 KB
testcase_05 AC 56 ms
50,252 KB
testcase_06 AC 56 ms
50,276 KB
testcase_07 AC 56 ms
50,336 KB
testcase_08 AC 55 ms
50,280 KB
testcase_09 AC 55 ms
50,276 KB
testcase_10 AC 56 ms
50,324 KB
testcase_11 AC 56 ms
50,196 KB
testcase_12 AC 57 ms
50,356 KB
testcase_13 AC 56 ms
50,272 KB
testcase_14 AC 55 ms
50,276 KB
testcase_15 AC 55 ms
49,968 KB
testcase_16 AC 57 ms
50,328 KB
testcase_17 AC 56 ms
50,204 KB
testcase_18 AC 56 ms
50,264 KB
testcase_19 AC 57 ms
50,200 KB
testcase_20 AC 56 ms
49,996 KB
testcase_21 AC 56 ms
50,352 KB
testcase_22 AC 56 ms
50,004 KB
testcase_23 AC 56 ms
50,392 KB
testcase_24 AC 56 ms
50,172 KB
testcase_25 AC 56 ms
50,020 KB
testcase_26 AC 56 ms
50,220 KB
testcase_27 AC 56 ms
50,096 KB
testcase_28 AC 56 ms
50,016 KB
testcase_29 AC 57 ms
50,344 KB
testcase_30 AC 56 ms
50,204 KB
testcase_31 AC 55 ms
50,160 KB
testcase_32 AC 56 ms
49,832 KB
testcase_33 AC 56 ms
50,208 KB
testcase_34 AC 58 ms
50,164 KB
testcase_35 AC 56 ms
50,296 KB
testcase_36 AC 56 ms
50,308 KB
testcase_37 AC 56 ms
50,208 KB
testcase_38 AC 55 ms
50,248 KB
testcase_39 AC 56 ms
50,032 KB
testcase_40 AC 55 ms
50,284 KB
testcase_41 AC 58 ms
50,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int a = sc.nextInt();
        int b = sc.nextInt();
        int n = sc.nextInt();
        long[][][] matrix = new long[30][2][2];
        matrix[0] = new long[][]{{0, 1}, {b, a}};
        for (int i = 1; i < 30; i++) {
            for (int j = 0; j < 2; j++) {
                for (int k = 0; k < 2; k++) {
                    for (int l = 0; l < 2; l++) {
                        matrix[i][j][l] += matrix[i - 1][j][k] * matrix[i - 1][k][l] % MOD;
                        matrix[i][j][l] %= MOD;
                    }
                }
            }
        }
        long[] ans = new long[]{0, 1};
        for (int i = 29; i >= 0; i--) {
            if (n < (1 << i)) {
                continue;
            }
            n -= (1 << i);
            long[] next = new long[2];
            for (int j = 0; j < 2; j++) {
                for (int k = 0; k < 2; k++) {
                    next[j] += matrix[i][j][k] * ans[k] % MOD;
                    next[j] %= MOD;
                }
            }
            ans = next;
        }
        System.out.println(ans[0]);
    }
    
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0