結果
| 問題 |
No.1175 Simultaneous Equations
|
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2025-06-24 02:36:59 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 184 bytes |
| コンパイル時間 | 393 ms |
| コンパイル使用メモリ | 82,356 KB |
| 実行使用メモリ | 67,256 KB |
| 最終ジャッジ日時 | 2025-06-24 02:37:01 |
| 合計ジャッジ時間 | 2,402 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 11 |
ソースコード
import numpy as np
A, B, C, D, E, F = map(int, input().split())
a = np.array([[A, B],
[D, E]])
b = np.array([C, F])
ans = np.linalg.solve(a, b)
print(ans[0], ans[1])
norioc