博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDOJ/HDU 2560 Buildings(嗯~水题)
阅读量:6176 次
发布时间:2019-06-21

本文共 1226 字,大约阅读时间需要 4 分钟。

Problem Description

We divide the HZNU Campus into N*M grids. As you can see from the picture below, the green grids represent the buidings. Given the size of the HZNU Campus, and the color of each grid, you should count how many green grids in the N*M grids.

Input

Standard input will contain multiple test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow.
The first line of each test case contains two integers n and m(1<=n,m<=100), the size of the campus. Then follow n lines, each line containing m integers. The j-th integer in the i-th line is the color of that grid, 0 stands for white color, while 1 stands for green.

Output

Results should be directed to standard output. For each case, output an integers T, the total green grids in the N*M size campus.

Sample Input

2
2 2
1 1
0 0
3 3
1 0 1
0 0 1
1 1 0

Sample Output

2
5

水题一个~~

就是一个学校n*m的面积,然后有建筑~
1代表建筑,统计建筑的总数~

import java.util.Scanner;public class Main{    public static void main(String[] args) {        Scanner sc = new Scanner(System.in);        int t =sc.nextInt();        while(t-->0){            int n =sc.nextInt();            int m =sc.nextInt();            int sum=0;            for(int i=0;i
你可能感兴趣的文章
浅谈js中的继承
查看>>
c#获取逻辑硬盘信息
查看>>
Redhat6.5中MySQL数据库的搭建
查看>>
Mysql 5.7 编译安装(附有软件包)
查看>>
支付系统设计白皮书:支付系统的概念与架构
查看>>
LB集群小结
查看>>
从SHAttered事件谈安全
查看>>
Tower上手:当个性与理想遇到现实
查看>>
Java类加载器( 死磕9)
查看>>
使用TensorFlow 来实现一个简单的验证码识别过程
查看>>
telnet 命令使用
查看>>
C语言编程 两种方法打印一个菱形(渐入显示)
查看>>
怎么将电脑桌面上dwg格式图纸进行打开查看?
查看>>
如何用Excel设置合同到期提醒?
查看>>
Sql server 视图
查看>>
Qt笔记(8)自定义控件 三 让使用了自定义控件的工程运行起来
查看>>
大磁盘分区 parted
查看>>
Linux第七次作业
查看>>
outlook设置默认不下载附件
查看>>
HA高可用Stonith介绍及Stonith事件触发流程机制
查看>>