結果
| 問題 |
No.2441 行列累乗
|
| コンテスト | |
| ユーザー |
mint
|
| 提出日時 | 2024-03-31 16:05:41 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 519 bytes |
| コンパイル時間 | 2,289 ms |
| コンパイル使用メモリ | 196,888 KB |
| 最終ジャッジ日時 | 2025-02-20 18:03:41 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 WA * 10 |
ソースコード
#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;
}
mint