結果
| 問題 |
No.3224 2×2行列入門
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-08-08 21:42:49 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 1,547 bytes |
| コンパイル時間 | 1,611 ms |
| コンパイル使用メモリ | 194,872 KB |
| 実行使用メモリ | 7,716 KB |
| 最終ジャッジ日時 | 2025-08-08 21:42:57 |
| 合計ジャッジ時間 | 2,528 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
#define mod99 998244353
#define mod107 1000000007
#define endl "\n"
#define rep(i,n) for (ll i = 0; i < (ll)(n); ++i)
#define prep(i,a,n) for (ll i = a; i < n; ++i)
#define all(a) a.begin(),a.end()
#define rall(a) a.rbegin(), a.rend()
#define si(x) ((ll)(x).size())
//#define YN(bool) if(bool){cout<<"YES"<<endl;}else{cout<<"NO"<<endl;}
#define yn(bool) if(bool){cout<<"Yes"<<endl;}else{cout<<"No"<<endl;}
#define PRE(x) cout << fixed << setprecision(x)
#define yes cout << "Yes\n"
#define no cout << "No\n"
//#define YES cout << "YES\n"
//#define NO cout << "NO\n"
template <typename T> inline T gcd(T a,T b) {return (b==0)?a:gcd(b,a%b);}
template <typename T> inline T lcm(T a, T b) {return a/gcd(a,b)*b;}
#define sq(x) ((x)*(x))
#define cube(x) ((x)*(x)*(x))
const ld PI=3.141592653589793238462643383279;
const ll INF=1000000000000000000LL;
string ABC = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
string abc = "abcdefghijklmnopqrstuvwxyz";
#define next_p next_permutation
template<class T> ll LB(vector<T> &v,T a){return lower_bound(v.begin(),v.end(),a)-v.begin();}
template<class T> ll UB(vector<T> &v,T a){return upper_bound(v.begin(),v.end(),a)-v.begin();}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll a,b,c,d;cin>>a>>b>>c>>d;
ll e,f,g,h;cin>>e>>f>>g>>h;
ll A=0,B=0,C=0,D=0,E=0,F=0,G=0,H=0;
A=a*e+b*g;B=a*f+b*h;C=c*e+d*g;D=c*f+d*h;
E=A*A+B*C;F=A*B+B*D;G=C*A+D*C;H=C*B+D*D;
cout<<E<<" "<<F<<endl;
cout<<G<<" "<<H<<endl;
}