結果

問題 No.1810 RGB Biscuits
ユーザー tentententen
提出日時 2023-01-17 10:19:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 3,015 bytes
コンパイル時間 7,212 ms
コンパイル使用メモリ 81,544 KB
実行使用メモリ 53,212 KB
最終ジャッジ日時 2023-08-30 15:18:34
合計ジャッジ時間 8,577 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
49,424 KB
testcase_01 AC 46 ms
49,380 KB
testcase_02 AC 43 ms
49,608 KB
testcase_03 AC 46 ms
49,432 KB
testcase_04 AC 46 ms
49,476 KB
testcase_05 AC 106 ms
52,488 KB
testcase_06 AC 111 ms
53,212 KB
testcase_07 AC 110 ms
52,824 KB
testcase_08 AC 111 ms
53,008 KB
testcase_09 AC 103 ms
52,712 KB
testcase_10 AC 94 ms
53,104 KB
testcase_11 AC 62 ms
50,544 KB
testcase_12 AC 45 ms
49,452 KB
testcase_13 AC 45 ms
51,396 KB
testcase_14 AC 55 ms
49,712 KB
testcase_15 AC 45 ms
49,468 KB
testcase_16 AC 48 ms
49,508 KB
testcase_17 AC 90 ms
50,792 KB
testcase_18 AC 92 ms
51,684 KB
testcase_19 AC 45 ms
49,380 KB
testcase_20 AC 43 ms
49,500 KB
testcase_21 AC 52 ms
49,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int xa = sc.nextInt();
        int xb = sc.nextInt();
        long[][][] matrix = new long[60][2][2];
        matrix[0] = new long[][]{{xa, xb}, {1, 0}};
        for (int i = 1; i < 60; i++) {
            for (int a = 0; a < 2; a++) {
                for (int b = 0; b < 2; b++) {
                    for (int c = 0; c < 2; c++) {
                        matrix[i][a][c] += matrix[i - 1][a][b] * matrix[i - 1][b][c] % MOD;
                        matrix[i][a][c] %= MOD;
                    }
                }
            }
        }
        int n = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (n-- > 0) {
            long t = sc.nextLong();
            boolean isOdd = (t % 2 == 1);
            t /= 2;
            long[] ans = new long[]{1, 1};
            for (int i = 59; i >= 0; i--) {
                if (t < (1L << i)) {
                    continue;
                }
                t -= (1L << i);
                long[] next = new long[2];
                for (int a = 0; a < 2; a++) {
                    for (int b = 0; b < 2; b++) {
                        next[a] += matrix[i][a][b] * ans[b] % MOD;
                        next[a] %= MOD;
                    }
                }
                ans = next;
            }
            long total = ans[0] + ans[1];
            total %= MOD;
            if (isOdd) {
                total += ans[0] * xa % MOD + ans[1] * xb % MOD;
                total %= MOD;
            }
            sb.append(total).append("\n");
        }
        System.out.print(sb);
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0