結果

問題 No.1175 Simultaneous Equations
ユーザー hiragnhiragn
提出日時 2022-11-22 16:09:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 519 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,704 KB
最終ジャッジ日時 2024-09-23 01:30:09
合計ジャッジ時間 8,438 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 514 ms
44,576 KB
testcase_01 AC 513 ms
44,324 KB
testcase_02 AC 518 ms
44,188 KB
testcase_03 AC 513 ms
44,060 KB
testcase_04 AC 519 ms
44,172 KB
testcase_05 AC 511 ms
44,060 KB
testcase_06 AC 513 ms
44,440 KB
testcase_07 AC 511 ms
44,684 KB
testcase_08 AC 510 ms
44,432 KB
testcase_09 AC 509 ms
44,704 KB
testcase_10 AC 510 ms
44,312 KB
testcase_11 AC 513 ms
44,060 KB
testcase_12 AC 518 ms
44,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


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

    left = [[a, b], [d, e]]
    right = [c, f]
    ans = np.linalg.solve(left, right)
    print(*ans)


if __name__ == "__main__":
    main()
0