結果

問題 No.1105 Many Triplets
ユーザー tentententen
提出日時 2021-11-24 11:22:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 2,163 bytes
コンパイル時間 2,548 ms
コンパイル使用メモリ 78,640 KB
実行使用メモリ 40,544 KB
最終ジャッジ日時 2024-06-26 10:53:27
合計ジャッジ時間 6,242 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
40,300 KB
testcase_01 AC 101 ms
40,368 KB
testcase_02 AC 86 ms
40,084 KB
testcase_03 AC 91 ms
40,116 KB
testcase_04 AC 90 ms
40,160 KB
testcase_05 AC 92 ms
40,372 KB
testcase_06 AC 92 ms
39,756 KB
testcase_07 AC 87 ms
39,992 KB
testcase_08 AC 88 ms
40,320 KB
testcase_09 AC 88 ms
39,912 KB
testcase_10 AC 92 ms
39,904 KB
testcase_11 AC 88 ms
40,260 KB
testcase_12 AC 92 ms
39,860 KB
testcase_13 AC 93 ms
40,544 KB
testcase_14 AC 103 ms
40,116 KB
testcase_15 AC 91 ms
40,136 KB
testcase_16 AC 92 ms
40,176 KB
testcase_17 AC 90 ms
40,156 KB
testcase_18 AC 87 ms
40,152 KB
testcase_19 AC 88 ms
40,256 KB
testcase_20 AC 87 ms
40,040 KB
testcase_21 AC 90 ms
40,060 KB
testcase_22 AC 102 ms
40,076 KB
testcase_23 AC 86 ms
39,964 KB
testcase_24 AC 87 ms
39,784 KB
testcase_25 AC 98 ms
40,164 KB
testcase_26 AC 87 ms
39,860 KB
testcase_27 AC 92 ms
38,804 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();
        long n = sc.nextLong() - 1;
        long[] ans = new long[3];
        for (int i = 0; i < 3; i++) {
            ans[i] = sc.nextInt();
        }
        long[][][] matrix = new long[63][3][3];
        matrix[0][0][0] = 1;
        matrix[0][0][1] = MOD - 1;
        matrix[0][1][1] = 1;
        matrix[0][1][2] = MOD - 1;
        matrix[0][2][2] = 1;
        matrix[0][2][0] = MOD - 1;
        for (int i = 1; i < 63; i++) {
            for (int j = 0; j < 3; j++) {
                for (int k = 0; k < 3; k++) {
                    for (int l = 0; l < 3; l++) {
                        matrix[i][j][l] += matrix[i - 1][j][k] * matrix[i - 1][k][l] % MOD;
                        matrix[i][j][l] %= MOD;
                    }
                }
            }
        }
        for (int i = 62; i >= 0; i--) {
            if (n < (1L << i)) {
                continue;
            }
            long[] next = new long[3];
            n -= (1L << i);
            for (int j = 0; j < 3; j++) {
                for (int k = 0; k < 3; k++) {
                    next[j] += matrix[i][j][k] * ans[k] % MOD;
                    next[j] %= MOD;
                }
            }
            ans = next;
        }
        System.out.println(ans[0] + " " + ans[1] + " " + ans[2]);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0