結果
| 問題 | No.1175 Simultaneous Equations |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-07-26 22:41:00 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 492 ms / 2,000 ms |
| + 268µs | |
| コード長 | 142 bytes |
| 記録 | |
| コンパイル時間 | 957 ms |
| コンパイル使用メモリ | 21,408 KB |
| 実行使用メモリ | 35,388 KB |
| 最終ジャッジ日時 | 2026-08-01 05:51:13 |
| 合計ジャッジ時間 | 9,351 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 11 |
ソースコード
from numpy.linalg import solve a, b, c, d, e, f = map(int, input().split()) left = [[a, b], [d, e]] right = [c, f] print(*solve(left, right))