結果

問題 No.1175 Simultaneous Equations
ユーザー kpinkcatkpinkcat
提出日時 2023-08-27 20:42:56
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 1,119 ms
コンパイル使用メモリ 103,480 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-28 03:44:18
合計ジャッジ時間 1,792 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
#include<math.h>
#include <iomanip>
#include<set>
#include <numeric>
#include<string>
using namespace std;


int main()
{
    int a, b, c, d, e, f;
    cin >> a >> b >> c >> d >> e >> f;
    if ((b*d - a*e) != 0) cout << (c*e - b*f)*1./(-b*d + a*e) << " " << (c*d - f*a)*1./(b*d - a*e) << endl;
}
0