結果
| 問題 |
No.1175 Simultaneous Equations
|
| コンテスト | |
| ユーザー |
pengin_2000
|
| 提出日時 | 2021-07-14 09:30:33 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 226 bytes |
| コンパイル時間 | 272 ms |
| コンパイル使用メモリ | 27,648 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-03 08:22:48 |
| 合計ジャッジ時間 | 775 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 11 |
ソースコード
#include<stdio.h>
int main()
{
double a, b, c, d, e, f;
scanf("%lf %lf %lf %lf %lf %lf", &a, &b, &c, &d, &e, &f);
printf("%.20lf %.20lf\n", (e * c - b * f) / (e * a - b * d), (d * c - a * f) / (b * d - a * e));
return 0;
}
pengin_2000