結果

問題 No.1175 Simultaneous Equations
ユーザー kichi2004_kichi2004_
提出日時 2020-08-21 21:23:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 539 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,548 KB
最終ジャッジ日時 2024-10-15 05:02:56
合計ジャッジ時間 8,207 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 533 ms
44,052 KB
testcase_01 AC 536 ms
44,024 KB
testcase_02 AC 535 ms
44,548 KB
testcase_03 AC 528 ms
44,032 KB
testcase_04 AC 534 ms
44,304 KB
testcase_05 AC 538 ms
44,052 KB
testcase_06 AC 539 ms
44,176 KB
testcase_07 AC 532 ms
44,180 KB
testcase_08 AC 529 ms
44,040 KB
testcase_09 AC 529 ms
44,048 KB
testcase_10 AC 535 ms
44,292 KB
testcase_11 AC 534 ms
44,344 KB
testcase_12 AC 537 ms
44,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

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

a1 = np.array([[a, b], [d, e]])
a2 = np.array([c, f])

ans0, ans1 = np.linalg.solve(a1, a2)

print(ans0, ans1)
0