結果

問題 No.1175 Simultaneous Equations
ユーザー lloyzlloyz
提出日時 2022-02-08 01:03:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,156 KB
最終ジャッジ日時 2024-06-22 18:01:24
合計ジャッジ時間 10,124 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
46,156 KB
testcase_01 AC 534 ms
44,412 KB
testcase_02 AC 531 ms
44,156 KB
testcase_03 AC 531 ms
46,012 KB
testcase_04 AC 531 ms
44,532 KB
testcase_05 AC 525 ms
44,880 KB
testcase_06 AC 524 ms
44,416 KB
testcase_07 AC 520 ms
44,144 KB
testcase_08 AC 536 ms
44,552 KB
testcase_09 AC 535 ms
44,288 KB
testcase_10 AC 536 ms
44,416 KB
testcase_11 AC 529 ms
44,268 KB
testcase_12 AC 533 ms
44,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

a, b, c, d, e, f = map(int, input().split())
P = np.array([[a, b], [d, e]])
V = np.array([[c], [f]])
invP = np.linalg.inv(P)
X = invP.dot(V)
print(X[0][0], X[1][0])
0