結果

問題 No.1175 Simultaneous Equations
ユーザー ssmkzkssmkzk
提出日時 2020-11-02 15:47:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 46,524 KB
最終ジャッジ日時 2024-07-22 06:18:31
合計ジャッジ時間 8,716 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 497 ms
44,564 KB
testcase_01 AC 496 ms
46,012 KB
testcase_02 AC 489 ms
44,592 KB
testcase_03 AC 492 ms
44,564 KB
testcase_04 AC 499 ms
44,948 KB
testcase_05 AC 490 ms
44,552 KB
testcase_06 AC 495 ms
44,952 KB
testcase_07 AC 496 ms
46,524 KB
testcase_08 AC 494 ms
46,300 KB
testcase_09 AC 490 ms
46,412 KB
testcase_10 AC 488 ms
44,956 KB
testcase_11 AC 495 ms
44,952 KB
testcase_12 AC 500 ms
46,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

a, b, c, d, e, f = map(int, input().split())

A = np.array([[a, b], [d, e]])
B = np.array([[c], [f]])
ans = np.dot(np.linalg.inv(A) , B)
print(ans[0][0], ans[1][0])

0