結果

問題 No.673 カブトムシ
ユーザー tentententen
提出日時 2021-03-18 08:51:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 1,292 bytes
コンパイル時間 2,002 ms
コンパイル使用メモリ 77,496 KB
実行使用メモリ 54,420 KB
最終ジャッジ日時 2024-04-27 22:16:00
合計ジャッジ時間 4,968 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,728 KB
testcase_01 AC 98 ms
52,624 KB
testcase_02 AC 107 ms
53,688 KB
testcase_03 AC 94 ms
52,548 KB
testcase_04 AC 104 ms
53,772 KB
testcase_05 AC 109 ms
53,992 KB
testcase_06 AC 100 ms
52,880 KB
testcase_07 AC 104 ms
54,420 KB
testcase_08 AC 106 ms
53,812 KB
testcase_09 AC 102 ms
52,652 KB
testcase_10 AC 107 ms
52,808 KB
testcase_11 AC 114 ms
53,924 KB
testcase_12 AC 107 ms
52,796 KB
testcase_13 AC 100 ms
52,864 KB
testcase_14 AC 112 ms
53,900 KB
testcase_15 AC 107 ms
54,020 KB
testcase_16 AC 106 ms
53,940 KB
testcase_17 AC 105 ms
52,876 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