Problem6492--高斯消元法

6492: 高斯消元法

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

Gauss 消元模板题。给定一个线性方程组,对其求解。

Input

第一行,一个正整数 $n$。
第二至 $n+1$ 行,每行 $n+1$ 个整数,为 $a_1, a_2, \cdots, a_n$ 和 $b$,代表一组方程。

Output

共 $n$ 行,每行一个数,第 $i$ 行为 $x_i$ (保留 $2$ 位小数)
如果不存在唯一解,在第一行输出 $\text{No Solution}$.

Constraints

$1≤n≤100,\∣a_i∣≤10^4,\ ∣b∣≤10^4$

Sample 1 Input

3
1 3 4 5
1 4 7 3
9 3 2 2

Sample 1 Output

-0.97
5.18
-2.39

HINT

题目来源:洛谷 P3389

Source/Category