結果

問題 No.673 カブトムシ
ユーザー tentententen
提出日時 2021-03-18 08:51:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 1,292 bytes
コンパイル時間 2,366 ms
コンパイル使用メモリ 77,792 KB
実行使用メモリ 54,244 KB
最終ジャッジ日時 2024-11-16 04:52:17
合計ジャッジ時間 5,862 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,076 KB
testcase_01 AC 135 ms
53,844 KB
testcase_02 AC 137 ms
53,816 KB
testcase_03 AC 137 ms
53,948 KB
testcase_04 AC 136 ms
53,728 KB
testcase_05 AC 137 ms
54,012 KB
testcase_06 AC 139 ms
53,732 KB
testcase_07 AC 136 ms
53,804 KB
testcase_08 AC 137 ms
53,844 KB
testcase_09 AC 135 ms
54,244 KB
testcase_10 AC 136 ms
53,800 KB
testcase_11 AC 138 ms
53,904 KB
testcase_12 AC 137 ms
53,752 KB
testcase_13 AC 135 ms
53,888 KB
testcase_14 AC 140 ms
53,952 KB
testcase_15 AC 139 ms
53,908 KB
testcase_16 AC 137 ms
54,088 KB
testcase_17 AC 138 ms
53,788 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);
        long b = sc.nextLong() % MOD;
        long c = sc.nextLong() % MOD;
        long d = sc.nextLong();
        long[][] araay = new long[40][4];
        araay[0] = new long[]{c, b * c % MOD, 0, 1};
        for (int i = 1; i < 40; i++) {
            araay[i][0] = (araay[i - 1][0] * araay[i - 1][0] + araay[i - 1][1] * araay[i - 1][2]) % MOD;
            araay[i][1] = (araay[i - 1][0] * araay[i - 1][1] + araay[i - 1][1] * araay[i - 1][3]) % MOD;
            araay[i][2] = (araay[i - 1][2] * araay[i - 1][0] + araay[i - 1][3] * araay[i - 1][2]) % MOD;
            araay[i][3] = (araay[i - 1][2] * araay[i - 1][1] + araay[i - 1][3] * araay[i - 1][3]) % MOD;
        }
        long[] ans = new long[]{0, 1};
        for (int i = 39; i >= 0 && d > 0; i--) {
            if (d >= (1L << i)) {
                d -= (1L << i);
                long[] next = new long[2];
                next[0] = (araay[i][0] * ans[0] + araay[i][1] * ans[1]) % MOD;
                next[1] = (araay[i][2] * ans[0] + araay[i][3] * ans[1]) % MOD;
                ans = next;
            }
        }
        System.out.println(ans[0]);
    }
}
0