結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 2 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 1 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;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    vector<int> n(4), m(4);
    for(auto & e : n) cin >> e;
    m = n;
    auto r3 = [](vector<int> n, vector<int> &m){
        m[0] = (m[0]*n[0] + m[1]*n[2]);
        m[2] = (m[2]*n[0] + m[3]*n[2]);
        m[1] = (m[0]*n[1] + m[1]*n[3]);
        m[3] = (m[2]*n[1] + m[3]*n[3]);
    };
    r3(n, m);
    r3(n, m);
    for(int i = 0; i < 4; i++) cout << m[i] << (i == 0 || i == 2 ? ' ' : '\n');
    return 0;
}
0