Sign in
or
Register
Courses
Textbook
Compiler
Contests
Topics
Courses
圖論
计数。开始
Module:
计数。开始
Problem
9
/9
顶点度数
Problem
无向图由邻接矩阵定义。求出图中所有顶点的度数。
输入:
- 第一行包含数字
n
(
\(1 \leq n \leq 100\)
) –图中的顶点数;
- 后面是
n
行
n
个数字,每个等于
0
或
1
, –它的邻接矩阵。
输出:
输出
n
个数–图顶点的度数(每行一个数字)。
例子
<头>
<日>#日>
输入
输出
东西> <正文>
1
5
0 0 1 0 0
0 0 1 0 1
1 1 0 0 0
0 0 0 0 0
0 1 0 0 0
1
2
2
0
1
表>
1000
ms
256 Mb
Rules for program design and list of errors in automatic problem checking
Teacher commentary