結果

問題 No.1175 Simultaneous Equations
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-18 09:39:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 527 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,548 KB
最終ジャッジ日時 2024-05-02 19:19:25
合計ジャッジ時間 9,830 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 511 ms
43,924 KB
testcase_01 AC 523 ms
44,176 KB
testcase_02 AC 523 ms
44,364 KB
testcase_03 AC 517 ms
44,060 KB
testcase_04 AC 519 ms
44,136 KB
testcase_05 AC 509 ms
43,912 KB
testcase_06 AC 495 ms
44,292 KB
testcase_07 AC 510 ms
44,300 KB
testcase_08 AC 518 ms
44,056 KB
testcase_09 AC 518 ms
44,548 KB
testcase_10 AC 519 ms
44,184 KB
testcase_11 AC 527 ms
44,448 KB
testcase_12 AC 516 ms
44,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy.linalg import solve
a,b,c,d,e,f = map(int,input().split())

l=[[a,b],[d,e]]
r=[c,f]

print(*solve(l,r))
0