結果
問題 | No.534 フィボナッチフィボナッチ数 |
ユーザー | 37zigen |
提出日時 | 2017-06-24 00:21:38 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 155 ms / 2,000 ms |
コード長 | 2,446 bytes |
コンパイル時間 | 2,272 ms |
コンパイル使用メモリ | 80,112 KB |
実行使用メモリ | 42,248 KB |
最終ジャッジ日時 | 2024-10-03 04:02:28 |
合計ジャッジ時間 | 8,848 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
41,648 KB |
testcase_01 | AC | 107 ms
40,148 KB |
testcase_02 | AC | 119 ms
41,680 KB |
testcase_03 | AC | 109 ms
40,428 KB |
testcase_04 | AC | 121 ms
41,312 KB |
testcase_05 | AC | 114 ms
40,968 KB |
testcase_06 | AC | 125 ms
41,372 KB |
testcase_07 | AC | 108 ms
40,028 KB |
testcase_08 | AC | 121 ms
41,608 KB |
testcase_09 | AC | 117 ms
41,320 KB |
testcase_10 | AC | 119 ms
41,428 KB |
testcase_11 | AC | 108 ms
40,040 KB |
testcase_12 | AC | 117 ms
41,304 KB |
testcase_13 | AC | 113 ms
41,320 KB |
testcase_14 | AC | 121 ms
41,252 KB |
testcase_15 | AC | 124 ms
41,212 KB |
testcase_16 | AC | 126 ms
41,644 KB |
testcase_17 | AC | 129 ms
41,704 KB |
testcase_18 | AC | 130 ms
41,684 KB |
testcase_19 | AC | 124 ms
41,688 KB |
testcase_20 | AC | 124 ms
41,704 KB |
testcase_21 | AC | 151 ms
42,068 KB |
testcase_22 | AC | 155 ms
42,120 KB |
testcase_23 | AC | 143 ms
41,588 KB |
testcase_24 | AC | 140 ms
41,412 KB |
testcase_25 | AC | 145 ms
41,724 KB |
testcase_26 | AC | 143 ms
41,948 KB |
testcase_27 | AC | 146 ms
41,692 KB |
testcase_28 | AC | 142 ms
41,816 KB |
testcase_29 | AC | 140 ms
41,716 KB |
testcase_30 | AC | 150 ms
42,036 KB |
testcase_31 | AC | 139 ms
42,128 KB |
testcase_32 | AC | 145 ms
42,248 KB |
testcase_33 | AC | 148 ms
42,228 KB |
testcase_34 | AC | 142 ms
42,036 KB |
testcase_35 | AC | 142 ms
41,564 KB |
testcase_36 | AC | 129 ms
41,384 KB |
testcase_37 | AC | 154 ms
42,176 KB |
testcase_38 | AC | 143 ms
41,792 KB |
testcase_39 | AC | 144 ms
41,724 KB |
testcase_40 | AC | 139 ms
41,840 KB |
testcase_41 | AC | 142 ms
41,652 KB |
ソースコード
import java.math.BigInteger; import java.util.Arrays; import java.util.Scanner; class Main implements Runnable { public static void main(String[] args) { long t = System.currentTimeMillis(); new Main().run(); // new Thread(null, new Main(), "", // Runtime.getRuntime().maxMemory()).start(); System.err.println(System.currentTimeMillis() - t); } long MODULO = 1_000_000_000 + 7; @SuppressWarnings("unchecked") public void run() { Scanner sc = new Scanner(System.in); long n = sc.nextLong(); long[][] x = { { 1, 1 }, { 1, 0 } }; BigInteger[][] x_big = { { BigInteger.ONE, BigInteger.ONE }, { BigInteger.ONE, BigInteger.ZERO } }; // BigInteger[][] y_big = { { BigInteger.ZERO, BigInteger.valueOf(MODULO // - 1) }, // { BigInteger.valueOf(MODULO - 1), BigInteger.ONE } }; BigInteger fn = pow(x_big, n, MODULO * MODULO - 1)[1][0]; // tr(fn.divide(BigInteger.valueOf(MODULO))); // long r = new Long(fn.mod(BigInteger.valueOf(MODULO)).toString()); long[][] z = pow(x, new Long(fn.toString()), MODULO); System.out.println(z[1][0]); } long[][] mul(long[][] a, long[][] b, long MODULO) { long[][] ret = new long[2][2]; for (int i = 0; i < 2; ++i) { for (int j = 0; j < 2; ++j) { for (int k = 0; k < 2; ++k) { ret[i][j] += a[i][k] % MODULO * b[k][j] % MODULO; ret[i][j] %= MODULO; } } } return ret; } BigInteger[][] mul(BigInteger[][] a, BigInteger[][] b, long MODULO) { BigInteger[][] ret = new BigInteger[2][2]; for (int i = 0; i < 2; ++i) { for (int j = 0; j < 2; ++j) { ret[i][j] = BigInteger.ZERO; } } for (int i = 0; i < 2; ++i) { for (int j = 0; j < 2; ++j) { for (int k = 0; k < 2; ++k) { ret[i][j] = ret[i][j].add(a[i][k].multiply(b[k][j])); ret[i][j] = ret[i][j].mod(BigInteger.valueOf(MODULO)); } } } return ret; } long[][] pow(long[][] a, long n, long MODULO) { long[][] ret = { { 1, 0 }, { 0, 1 } }; for (; n > 0; n >>= 1, a = mul(a, a, MODULO)) { if (n % 2 == 1) { ret = mul(ret, a, MODULO); } } return ret; } BigInteger[][] pow(BigInteger[][] a, long n, long MODULO) { BigInteger[][] ret = { { BigInteger.ONE, BigInteger.ZERO }, { BigInteger.ZERO, BigInteger.ONE } }; for (; n > 0; n >>= 1, a = mul(a, a, MODULO)) { if (n % 2 == 1) { ret = mul(ret, a, MODULO); } } return ret; } static void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }