結果
問題 | No.2441 行列累乗 |
ユーザー | mint |
提出日時 | 2024-03-31 16:32:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 546 bytes |
コンパイル時間 | 2,021 ms |
コンパイル使用メモリ | 198,508 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-09-30 21:05:12 |
合計ジャッジ時間 | 2,642 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main() { ios::sync_with_stdio(false); cin.tie(0); ll a, b, c, d, e, f, g, h; cin >> e >> f >> g >> h; a = e, b = f, c = g, d = h; auto r3 = [&](ll &a, ll &b, ll &c, ll &d, ll e, ll f, ll g, ll h){ a = (a*e + b*g); c = (c*e + d*g); b = (a*f + b*h); d = (c*f + d*h); }; r3(a, b, c, d, e, f, g, h); r3(a, b, c, d, e, f, g, h); cout << a << ' ' << b << '\n'; cout << c << ' ' << d << '\n'; return 0; }