Problem 2729 --Structured Program II - Spreadsheet

2729: Structured Program II - Spreadsheet

"
Time Limit $1$ 秒/Second(s) Memory Limit $512$ 兆字节/Megabyte(s)
提交总数 $17$ 正确数量 $13$
裁判形式 标准裁判/Standard Judge 我的状态 尚未尝试
难度 分类标签 STL

Spreadsheet 

Your task is to perform a simple table calculation. 

Write a program which reads the number of rows r, columns c and a table of r × c elements, and prints a new table, which includes the total sum for each row and column.

In the first line, two integers r and c are given. Next, the table is given by r lines, each of which consists of c integers separated by space characters.
Print the new table of (r+1) × (c+1) elements. Put a single space character between adjacent elements. For each row, print the sum of it's elements in the last column. For each column, print the sum of it's elements in the last row. Print the total sum of the elements at the bottom right corner of the table.
4 5
1 1 3 4 5
2 2 2 4 5
3 3 0 1 1
2 3 4 4 6
1 1 3 4 5 14
2 2 2 4 5 15
3 3 0 1 1 8
2 3 4 4 6 19
8 9 9 13 17 56

1 ≤ r, c ≤ 100 

0 ≤ an element of the table ≤ 100

推荐代码 查看2729 所有题解 上传题解视频得图灵币

本题记录 用 户(点击查看用户) 运行号(点击购买题解) 时 间
算法最快[$0 $ms] 刘欢@计算机科学与技术161 428765 2019-05-15 20:21:52
内存最少[$2016 $KB] 0.0 408029 2019-04-22 21:56:03
第一AC 刘成健 315643 2018-11-17 14:30:19
第一挑战 刘成健 315643 2018-11-17 14:30:19

赛题来源/所属竞赛 会津大学《C++ Programming I》 C++程序设计(入门)

竞赛编号 竞赛名称 竞赛时间 访问比赛