結果

問題 No.1175 Simultaneous Equations
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-18 09:39:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 523 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,568 KB
最終ジャッジ日時 2024-11-23 13:17:38
合計ジャッジ時間 10,343 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 520 ms
44,056 KB
testcase_01 AC 509 ms
44,040 KB
testcase_02 AC 515 ms
44,568 KB
testcase_03 AC 520 ms
44,308 KB
testcase_04 AC 517 ms
44,056 KB
testcase_05 AC 505 ms
43,932 KB
testcase_06 AC 519 ms
44,296 KB
testcase_07 AC 517 ms
44,308 KB
testcase_08 AC 515 ms
43,928 KB
testcase_09 AC 521 ms
44,444 KB
testcase_10 AC 523 ms
44,040 KB
testcase_11 AC 521 ms
44,316 KB
testcase_12 AC 513 ms
44,300 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