結果
問題 | No.1175 Simultaneous Equations |
ユーザー | Kunta (coder) |
提出日時 | 2020-08-21 22:06:39 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 973 bytes |
コンパイル時間 | 1,605 ms |
コンパイル使用メモリ | 166,660 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 05:40:17 |
合計ジャッジ時間 | 2,180 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 11 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define MoD 1e9 + 7 #define clear(a) memset(a, 0, sizeof(a)) #define fo(i, a, b) for(int i = a; i < b; i++) //#define re(i, a, b) for(int i = b; i > a; i--) #define pb(a) push_back(a) template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} int a, b, c, d, e, f; int gcm(int a1, int b1){ int n_mx=max(a1,b1); int n_mi=min(a1,b1); int m= n_mx % n_mi; if(m!=0) return gcm(m, n_mi); else return n_mi; } int lcm(int a1,int b1){ return (a1*b1/gcm(a1,b1)); } void solve(){ cin >> a >> b >> c >> d >> e >> f; double xf= lcm(a,d), yf= lcm(b,e); cout.precision(20); cout << ((yf*c/b)-(yf*f/e))/((yf*1.0*a/b)-(yf*1.0*d/e)) << ' ' << ((xf*c/a)-(xf*f/d))/((xf*1.0*b/a)-(xf*1.0*e/d)) << '\n'; } int main() { ios::sync_with_stdio(0); cin.tie(0); int t=1; for(int i=1; i<=t; ++i) { solve(); } }