結果

問題 No.2441 行列累乗
ユーザー ほえいほえい
提出日時 2023-08-31 17:34:09
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,742 bytes
コンパイル時間 5,311 ms
コンパイル使用メモリ 311,472 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-11 01:28:33
合計ジャッジ時間 5,840 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using lb = long double;
using ull = unsigned long long;
using P = pair<ll, ll>;
#define rep(i, n) for (int i = 0; i < (n); i++)
#define rep1(i, n) for (int i = 1; i <= (n); i++)
#define rep2(i, n) for (int i = (n)-1; i >= 0; i--)
#define repp(i, m, n) for (int i = m; i < n; i++)
#define elif else if
#define yes cout << "Yes" << endl;
#define no  cout << "No"  << endl;
#define fi first
#define se second
#define r0 return 0;
#define Graph map<int,vector<int>>
#define ALL(a) (a).begin(),(a).end()
#define RALL(a) (a).rbegin(),(a).rend()
#define eb emplace_back
#define pb pop_back
#define int long long
const int di[] = {-1,-1,-1,0,0,1,1,1};
const int dj[] = {-1,0,1,-1,1,-1,0,1};
const int dx[] = {1,0,-1,0};
const int dy[] = {0,1,0,-1};
template <class T1, class T2> bool chmax(T1& a, T2 b) { if (a < b) { a = b; return true; } return false; }
template <class T1, class T2> bool chmin(T1& a, T2 b) { if (a > b) { a = b; return true; } return false; }
const lb pi = 3.14159265358979;
using mint = modint998244353;
priority_queue<ll, vector<ll>, greater<ll>> pq;

/*
        ∧∧l||l   / ̄ ̄ ̄ ̄
        /⌒ヽ)  < もうだめぽ…
     ~(___)     \____
      ''" ""''"" "'''
*/

signed main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    vector<int> a(4), b(4);
    rep(i,4) cin >> a[i];
    b = a;
    rep(i,2) {
        a[0] = a[0]*b[0]+a[1]*b[2];
        a[1] = a[0]*b[1]+a[1]*b[3];
        a[2] = a[2]*b[0]+a[3]*b[2];
        a[3] = a[2]*b[1]+a[3]*b[3];
    }
    cout << a[0] << " " << a[1] << endl;
    cout << a[2] << " " << a[3] << endl;
}
0