結果

問題 No.534 フィボナッチフィボナッチ数
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-24 18:40:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 1,508 bytes
コンパイル時間 1,881 ms
コンパイル使用メモリ 77,180 KB
実行使用メモリ 41,680 KB
最終ジャッジ日時 2024-10-04 02:58:27
合計ジャッジ時間 7,663 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,176 KB
testcase_01 AC 114 ms
40,860 KB
testcase_02 AC 101 ms
41,180 KB
testcase_03 AC 112 ms
40,184 KB
testcase_04 AC 116 ms
41,248 KB
testcase_05 AC 107 ms
41,076 KB
testcase_06 AC 116 ms
41,128 KB
testcase_07 AC 111 ms
41,036 KB
testcase_08 AC 115 ms
41,272 KB
testcase_09 AC 108 ms
40,856 KB
testcase_10 AC 116 ms
41,280 KB
testcase_11 AC 103 ms
41,228 KB
testcase_12 AC 112 ms
40,008 KB
testcase_13 AC 104 ms
41,260 KB
testcase_14 AC 120 ms
41,124 KB
testcase_15 AC 122 ms
41,344 KB
testcase_16 AC 120 ms
41,084 KB
testcase_17 AC 116 ms
39,692 KB
testcase_18 AC 103 ms
41,652 KB
testcase_19 AC 115 ms
41,000 KB
testcase_20 AC 113 ms
41,320 KB
testcase_21 AC 115 ms
41,348 KB
testcase_22 AC 112 ms
40,864 KB
testcase_23 AC 104 ms
41,280 KB
testcase_24 AC 102 ms
39,936 KB
testcase_25 AC 111 ms
41,112 KB
testcase_26 AC 111 ms
41,088 KB
testcase_27 AC 116 ms
41,248 KB
testcase_28 AC 111 ms
41,404 KB
testcase_29 AC 112 ms
41,272 KB
testcase_30 AC 108 ms
40,872 KB
testcase_31 AC 128 ms
41,064 KB
testcase_32 AC 100 ms
41,400 KB
testcase_33 AC 112 ms
41,400 KB
testcase_34 AC 100 ms
41,268 KB
testcase_35 AC 113 ms
41,060 KB
testcase_36 AC 109 ms
39,852 KB
testcase_37 AC 120 ms
41,036 KB
testcase_38 AC 120 ms
41,680 KB
testcase_39 AC 119 ms
41,028 KB
testcase_40 AC 108 ms
40,940 KB
testcase_41 AC 113 ms
41,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  static long MOD1 = (long)Math.pow(10, 9) + 7;
  static long MOD2 = 2 * (long)Math.pow(10, 9) + 16; 
  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, MOD2);
    long t = f[1][0];
    long[][] ans = func(d, t, MOD1);
    long anse = ans[1][0];
    System.out.println(anse);
  }

  public static long[][] func(long[][] a, long x, long mod) {
    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, mod);
    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