結果
問題 | No.720 行列のできるフィボナッチ数列道場 (2) |
ユーザー | nebukuro09 |
提出日時 | 2018-07-27 23:59:26 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,463 bytes |
コンパイル時間 | 793 ms |
コンパイル使用メモリ | 114,560 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-13 01:34:22 |
合計ジャッジ時間 | 1,615 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, std.bitmanip; immutable long MOD = 10^^9 + 7; void main() { auto s = readln.split.map!(to!long); auto N = s[0]; auto M = s[1]; long[][] hoge = [[1, 1], [1, 0]]; auto F1 = matpow(hoge, M*N+M-1)[0][0]; auto F2 = matpow(hoge, M*N-1)[0][0]; auto F3 = matpow(hoge, M-1)[0][0]; auto LM = matpow(hoge, M-2); auto L = (LM[0][0] * 3 + LM[0][1]) % MOD; long sign = M % 2 ? -1 : 1; long tmp1 = (F1 - sign * F2 - F3) % MOD; long tmp2 = (L - sign - 1); long ans = tmp1 * powmod(tmp2, MOD-2) % MOD; ans = (ans + MOD) % MOD; ans.writeln; } long[][] matmul(long[][] m1, long[][] m2) { int n = m1.length.to!int; long[][] ret = new long[][](n, n); foreach (i; 0..n) foreach (j; 0..n) foreach (k; 0..n) { (ret[i][j] += m1[i][k] * m2[k][j] % MOD) %= MOD; } return ret; } long[][] matpow(long[][] m, long x) { int n = m.length.to!int; long[][] ret = new long[][](n, n); foreach (i; 0..n) ret[i][i] = 1; while (x) { if (x % 2) ret = matmul(ret, m); m = matmul(m, m); x /= 2; } return ret; } long powmod(long a, long x) { long ret = 1; while (x) { if (x & 1) ret = ret * a % MOD; a = a * a % MOD; x /= 2; } return ret; }