CF595A.Vitaly and Night

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

One day Vitaly was going home late at night and wondering: how many people aren't sleeping at that moment? To estimate, Vitaly decided to look which windows are lit in the house he was passing by at that moment.

Vitaly sees a building of nn floors and 2m2·m windows on each floor. On each floor there are mm flats numbered from 11 to mm , and two consecutive windows correspond to each flat. If we number the windows from 11 to 2m2·m from left to right, then the jj -th flat of the ii -th floor has windows 2j12·j-1 and 2j2·j in the corresponding row of windows (as usual, floors are enumerated from the bottom). Vitaly thinks that people in the flat aren't sleeping at that moment if at least one of the windows corresponding to this flat has lights on.

Given the information about the windows of the given house, your task is to calculate the number of flats where, according to Vitaly, people aren't sleeping.

输入格式

The first line of the input contains two integers nn and mm ( 1<=n,m<=1001<=n,m<=100 ) — the number of floors in the house and the number of flats on each floor respectively.

Next nn lines describe the floors from top to bottom and contain 2m2·m characters each. If the ii -th window of the given floor has lights on, then the ii -th character of this line is '1', otherwise it is '0'.

输出格式

Print a single integer — the number of flats that have lights on in at least one window, that is, the flats where, according to Vitaly, people aren't sleeping.

输入输出样例

  • 输入#1

    2 2
    0 0 0 1
    1 0 1 1
    

    输出#1

    3
    
  • 输入#2

    1 3
    1 1 0 1 0 0
    

    输出#2

    2
    

说明/提示

In the first test case the house has two floors, two flats on each floor. That is, in total there are 4 flats. The light isn't on only on the second floor in the left flat. That is, in both rooms of the flat the light is off.

In the second test case the house has one floor and the first floor has three flats. The light is on in the leftmost flat (in both windows) and in the middle flat (in one window). In the right flat the light is off.

首页