結果
| 問題 |
No.1175 Simultaneous Equations
|
| コンテスト | |
| ユーザー |
mesame3993
|
| 提出日時 | 2021-11-18 21:32:52 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 182 bytes |
| コンパイル時間 | 689 ms |
| コンパイル使用メモリ | 82,432 KB |
| 実行使用メモリ | 52,096 KB |
| 最終ジャッジ日時 | 2024-12-27 17:42:15 |
| 合計ジャッジ時間 | 2,484 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 1 |
| other | WA * 11 |
ソースコード
def main(): from sys import stdin readline=stdin.readline a,b,c,d,e,f = map(int,readline().split()) x = (c*d-a*f) / (b*d-a*e) y = (c*e-b*f) / (e*a-b*d) print(x, y) main()
mesame3993