結果
問題 | No.1704 Many Bus Stops (easy) |
ユーザー | nebukuro09 |
提出日時 | 2021-10-08 22:54:27 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 250 ms / 2,000 ms |
コード長 | 1,489 bytes |
コンパイル時間 | 669 ms |
コンパイル使用メモリ | 114,152 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-22 12:45:22 |
合計ジャッジ時間 | 8,578 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 239 ms
6,940 KB |
testcase_02 | AC | 81 ms
6,940 KB |
testcase_03 | AC | 80 ms
6,940 KB |
testcase_04 | AC | 79 ms
6,944 KB |
testcase_05 | AC | 83 ms
6,944 KB |
testcase_06 | AC | 84 ms
6,944 KB |
testcase_07 | AC | 82 ms
6,944 KB |
testcase_08 | AC | 81 ms
6,944 KB |
testcase_09 | AC | 77 ms
6,944 KB |
testcase_10 | AC | 85 ms
6,944 KB |
testcase_11 | AC | 81 ms
6,944 KB |
testcase_12 | AC | 79 ms
6,940 KB |
testcase_13 | AC | 78 ms
6,944 KB |
testcase_14 | AC | 78 ms
6,944 KB |
testcase_15 | AC | 79 ms
6,940 KB |
testcase_16 | AC | 78 ms
6,944 KB |
testcase_17 | AC | 78 ms
6,944 KB |
testcase_18 | AC | 79 ms
6,944 KB |
testcase_19 | AC | 79 ms
6,940 KB |
testcase_20 | AC | 78 ms
6,948 KB |
testcase_21 | AC | 81 ms
6,944 KB |
testcase_22 | AC | 235 ms
6,944 KB |
testcase_23 | AC | 243 ms
6,944 KB |
testcase_24 | AC | 235 ms
6,944 KB |
testcase_25 | AC | 235 ms
6,944 KB |
testcase_26 | AC | 240 ms
6,948 KB |
testcase_27 | AC | 230 ms
6,944 KB |
testcase_28 | AC | 240 ms
6,940 KB |
testcase_29 | AC | 250 ms
6,940 KB |
testcase_30 | AC | 237 ms
6,944 KB |
testcase_31 | AC | 234 ms
6,940 KB |
testcase_32 | AC | 235 ms
6,944 KB |
testcase_33 | AC | 240 ms
6,940 KB |
testcase_34 | AC | 238 ms
6,940 KB |
testcase_35 | AC | 234 ms
6,940 KB |
testcase_36 | AC | 242 ms
6,944 KB |
testcase_37 | AC | 241 ms
6,940 KB |
testcase_38 | AC | 235 ms
6,944 KB |
testcase_39 | AC | 232 ms
6,944 KB |
testcase_40 | AC | 234 ms
6,940 KB |
testcase_41 | AC | 233 ms
6,944 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; immutable long MOD = 10^^9 + 7; void main() { auto T = readln.chomp.to!int; long a = powmod(3, MOD-2, MOD); long b = 1L; long[][] X = [[a, 0, 0, a, 0, a], [0, a, 0, a, a, 0], [0, 0, a, 0, a, a], [0, 0, b, 0, 0, 0], [b, 0, 0, 0, 0, 0], [0, b, 0, 0, 0, 0]]; while (T--) { auto N = readln.chomp.to!int; auto ans = matpow(6, N, X); ans[0][0].writeln; } } long powmod(long a, long x, long m) { long ret = 1; while (x) { if (x % 2) ret = ret * a % m; a = a * a % m; x /= 2; } return ret; } long[][] matmul(int N, long[][] m1, long[][] m2) { auto ret = new long[][](N, N); foreach (i; 0..N) { foreach (j; 0..N) { ret[i][j] = 0; foreach (k; 0..N) { (ret[i][j] += m1[i][k] * m2[k][j] % MOD) %= MOD; } } } return ret; } long[][] matpow(int N, long K, long[][] mat) { auto ret = new long[][](N, N); foreach (i; 0..N) foreach (j; 0..N) ret[i][j] = i == j ? 1 : 0; while (K > 0) { if (K % 2 == 1) ret = matmul(N, ret, mat); mat = matmul(N, mat, mat); K /= 2; } return ret; }