結果

問題 No.2441 行列累乗
ユーザー mintmint
提出日時 2024-03-31 16:32:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 546 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 200,116 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-03-31 16:32:58
合計ジャッジ時間 2,993 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 2 ms
6,676 KB
testcase_03 AC 2 ms
6,676 KB
testcase_04 AC 2 ms
6,676 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 3 ms
6,676 KB
testcase_08 AC 2 ms
6,676 KB
testcase_09 AC 2 ms
6,676 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 3 ms
6,676 KB
testcase_13 AC 2 ms
6,676 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0