1. 程式人生 > >【Henu ACM Round#14 A】Vitaly and Night

【Henu ACM Round#14 A】Vitaly and Night

bits 題解 round name ret sin http out mes

【鏈接】 我是鏈接,點我呀:)
【題意】


在這裏輸入題意

【題解】


連續兩個如果不全是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