結果

問題 No.2441 行列累乗
ユーザー SSRSSSRS
提出日時 2023-08-25 21:20:59
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 2,362 ms
コンパイル使用メモリ 204,648 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-24 07:39:16
合計ジャッジ時間 2,613 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  vector<vector<int>> M(2, vector<int>(2));
  for (int i = 0; i < 2; i++){
    for (int j = 0; j < 2; j++){
      cin >> M[i][j];
    }
  }
  for (int i = 0; i < 2; i++){
    for (int j = 0; j < 2; j++){
      int ans = 0;
      for (int k = 0; k < 2; k++){
        for (int l = 0; l < 2; l++){
          ans += M[i][k] * M[k][l] * M[l][j];
        }
      }
      cout << ans;
      if (j == 0){
        cout << ' ';
      }
    }
    cout << endl;
  }
}
0