码迷,mamicode.com
首页 > 其他好文 > 详细

【Henu ACM Round#14 A】Vitaly and Night

时间:2018-01-24 14:02:00      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:==   log   代码   acm   .com   ace   ref   return   body   

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


连续两个如果不全是0就递增cnt

【代码】

#include <bits/stdc++.h>
using namespace std;

int n,m;

int main()
{
    cin >> n >>m;
    int cnt = 0;
    for (int i = 1;i <= n;i++){
        int x,y;
        for (int j = 1;j <= m;j++){
            cin >>x  >>y;
            if (!(x==0 && y==0)) cnt++;
        }
    }
    cout <<cnt<<endl;
    return 0;
}

【Henu ACM Round#14 A】Vitaly and Night

标签:==   log   代码   acm   .com   ace   ref   return   body   

原文地址:https://www.cnblogs.com/AWCXV/p/8341061.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!