結果
| 問題 | No.1175 Simultaneous Equations |
| コンテスト | |
| ユーザー |
toto
|
| 提出日時 | 2025-03-28 13:29:55 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 215 bytes |
| 記録 | |
| コンパイル時間 | 80 ms |
| コンパイル使用メモリ | 38,480 KB |
| 実行使用メモリ | 9,188 KB |
| 最終ジャッジ日時 | 2026-07-08 00:10:32 |
| 合計ジャッジ時間 | 1,305 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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));
}
toto