結果

問題 No.534 フィボナッチフィボナッチ数
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-23 23:53:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,427 bytes
コンパイル時間 1,825 ms
コンパイル使用メモリ 76,952 KB
実行使用メモリ 55,952 KB
最終ジャッジ日時 2024-10-03 03:53:08
合計ジャッジ時間 7,674 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,108 KB
testcase_01 AC 112 ms
53,916 KB
testcase_02 AC 106 ms
53,928 KB
testcase_03 AC 119 ms
54,000 KB
testcase_04 AC 111 ms
54,148 KB
testcase_05 AC 94 ms
53,968 KB
testcase_06 AC 106 ms
53,916 KB
testcase_07 AC 109 ms
53,984 KB
testcase_08 AC 101 ms
52,908 KB
testcase_09 AC 112 ms
53,952 KB
testcase_10 AC 116 ms
53,744 KB
testcase_11 AC 98 ms
52,420 KB
testcase_12 AC 112 ms
53,684 KB
testcase_13 AC 110 ms
53,952 KB
testcase_14 AC 129 ms
54,044 KB
testcase_15 AC 114 ms
53,952 KB
testcase_16 AC 113 ms
54,052 KB
testcase_17 AC 109 ms
53,916 KB
testcase_18 AC 112 ms
54,224 KB
testcase_19 AC 118 ms
53,916 KB
testcase_20 AC 114 ms
54,168 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  static long MOD = (long)Math.pow(10, 9) + 7; 
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long n = sc.nextLong();
    long[][] d = new long[2][2];
    d[0][0] = 1;
    d[0][1] = 1;
    d[1][0] = 1;
    long[][] f = func(d, n);
    long t = f[1][0];
    long[][] ans = func(d, t);
    long anse = ans[1][0];
    System.out.println(anse);
  }

  public static long[][] func(long[][] a, long x) {
    if(x == 0) {
      long[][] b = new long[2][2];
      b[0][0] = 1;
      b[1][1] = 1;
      return b;
    }
    long[][] c = func(a, x / 2);
    long[][] d = new long[2][2];
    d[0][0] = (((c[0][0] * c[0][0]) % MOD) + ((c[0][1] * c[1][0]) % MOD)) % MOD;
    d[0][1] = (((c[0][0] * c[0][1]) % MOD) + ((c[0][1] * c[1][1]) % MOD)) % MOD;
    d[1][0] = (((c[1][0] * c[0][0]) % MOD) + ((c[1][1] * c[1][0]) % MOD)) % MOD;
    d[1][1] = (((c[1][0] * c[0][1]) % MOD) + ((c[1][1] * c[1][1]) % MOD)) % MOD;
    if(x % 2 == 0) {
      return d;
    } else {
      long[][] e = new long[2][2];
      e[0][0] = (((a[0][0] * d[0][0]) % MOD) + ((a[0][1] * d[1][0]) % MOD)) % MOD;
      e[0][1] = (((a[0][0] * d[0][1]) % MOD) + ((a[0][1] * d[1][1]) % MOD)) % MOD;
      e[1][0] = (((a[1][0] * d[0][0]) % MOD) + ((a[1][1] * d[1][0]) % MOD)) % MOD;
      e[1][1] = (((a[1][0] * d[0][1]) % MOD) + ((a[1][1] * d[1][1]) % MOD)) % MOD;
      return e;
    }
  }
}
0