結果

問題 No.1175 Simultaneous Equations
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-07-26 22:41:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 142 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 10,672 KB
実行使用メモリ 29,836 KB
最終ジャッジ日時 2023-09-11 05:09:35
合計ジャッジ時間 5,638 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
29,684 KB
testcase_01 AC 140 ms
29,748 KB
testcase_02 AC 140 ms
29,812 KB
testcase_03 AC 139 ms
29,760 KB
testcase_04 AC 136 ms
29,780 KB
testcase_05 AC 135 ms
29,776 KB
testcase_06 AC 137 ms
29,652 KB
testcase_07 AC 141 ms
29,704 KB
testcase_08 AC 142 ms
29,768 KB
testcase_09 AC 141 ms
29,836 KB
testcase_10 AC 139 ms
29,676 KB
testcase_11 AC 138 ms
29,672 KB
testcase_12 AC 140 ms
29,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy.linalg import solve
a, b, c, d, e, f = map(int, input().split())
left = [[a, b], 
[d, e]]
right = [c, f]
print(*solve(left, right))
0