結果

問題 No.1175 Simultaneous Equations
ユーザー 37zigen37zigen
提出日時 2020-08-21 21:39:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 482 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,388 KB
最終ジャッジ日時 2024-10-15 05:25:19
合計ジャッジ時間 8,039 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 469 ms
43,788 KB
testcase_01 AC 464 ms
44,388 KB
testcase_02 AC 472 ms
43,432 KB
testcase_03 AC 464 ms
44,316 KB
testcase_04 AC 464 ms
43,548 KB
testcase_05 AC 465 ms
44,060 KB
testcase_06 AC 482 ms
43,936 KB
testcase_07 AC 468 ms
43,676 KB
testcase_08 AC 482 ms
44,060 KB
testcase_09 AC 473 ms
43,548 KB
testcase_10 AC 481 ms
44,312 KB
testcase_11 AC 475 ms
43,936 KB
testcase_12 AC 473 ms
43,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
a,b,c,d,e,f=map(int,input().split())
det=a*e-b*d
mat=np.array([[e,-b],[-d,a]])
vec=np.array([[c],[f]])
mat=mat/det
vec=np.dot(mat,vec)
print(vec[0][0],vec[1][0])
0