結果
問題 | No.303 割れません |
ユーザー | te-sh |
提出日時 | 2017-06-13 11:55:38 |
言語 | D (dmd 2.106.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,292 bytes |
コンパイル時間 | 1,370 ms |
コンパイル使用メモリ | 148,580 KB |
実行使用メモリ | 14,008 KB |
最終ジャッジ日時 | 2024-06-12 20:00:35 |
合計ジャッジ時間 | 13,000 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,764 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string; import std.bigint; // BigInt void main() { auto l = readln.chomp.to!int; if (l == 1) { writeln(1); writeln(1); } else if (l == 2) { writeln(3); writeln("INF"); } else { writeln(l); if (l % 2 == 0) writeln(calc(l) - calc(l/2) ^^ 2); else writeln(calc(l)); } } auto calc(int l) { auto o = BigInt(1), z = BigInt(0); auto a = [[o,o],[o,z]]; auto im = [[o,z],[z,o]]; auto b = repeatedSquare!(BigInt[][], matMul)(a, l-2, im); return matMulVec(b, [o,o])[0]; } T[][] matMul(T)(T[][] a, T[][] b) { auto l = b.length, m = a.length, n = b[0].length; auto c = new T[][](m, n); foreach (i; 0..m) foreach (j; 0..n) foreach (k; 0..l) c[i][j] += a[i][k] * b[k][j]; return c; } T[] matMulVec(T)(T[][] a, T[] b) { auto l = b.length, m = a.length; auto c = new T[](m); foreach (i; 0..m) foreach (j; 0..l) c[i] += a[i][j] * b[j]; return c; } T repeatedSquare(T, alias pred = "a * b", U)(T a, U n, T init) { import std.functional; alias predFun = binaryFun!pred; if (n == 0) return init; auto r = init; while (n > 0) { if ((n & 1) == 1) r = predFun(r, a); a = predFun(a, a); n >>= 1; } return r; }