CCC '15 S1 - Zero That Out

View as PDF

Submit solution


Points: 3
Time limit: 5.0s
Memory limit: 256M

Problem type
Canadian Computing Competition: 2015 Stage 1, Senior #1

Your boss has asked you to add up a sequence of positive numbers to determine how much money your company made last year.

Unfortunately, your boss reads out numbers incorrectly from time to time.

Fortunately, your boss realizes when an incorrect number is read and says "zero", meaning "ignore the current last number."

Unfortunately, your boss can make repeated mistakes, and says "zero" for each mistake.

For example, your boss can say "One, three, five, four, zero, zero, seven, zero, zero, six", which means the total is 7 as explained in the following chart.

Boss statement(s) Current numbers Explanation
"One, three, five, four" 1, 3, 5, 4 Record the first four numbers.
"zero, zero" 1, 3 Ignore the last two numbers.
"seven" 1, 3, 7 Record the number 7 at the end of our list.
"zero, zero" 1 Ignore the last two numbers.
"six" 1, 6 We have read all numbers, and the total is 7.

At any point, your boss will have said at least as many positive numbers as "zero" statements. If all positive numbers have been ignored, the sum is zero.

Write a program that reads the sequence of boss statements and computes the correct sum.

Input Specification

The first line of input contains the integer K (1 \le K \le 100\,000) which is the number of integers (including "zero") your boss will say. On each of the K lines, there will either be one integer between 1 and 100 (inclusive) or the integer 0.

Output Specification

The output is one line, containing the integer which is the correct sum of the integers read, taking the "zero" statements into consideration. You can assume that the output will be an integer in the range 0 and 1\,000\,000 (inclusive).

Sample Input 1

4
3
0
4
0

Sample Output 1

0

Sample Input 2

10
1
3
5
4
0
0
7
0
0
6

Sample Output 2

7

Comments


  • -3
    Vidonicle  commented on Oct. 22, 2023, 10:44 p.m.

    > 0 is first number

    > Boss removes 0 money

    > infinite money glitch?

    (I know 0 cant be the first number)


    • 0
      amogus512  commented on March 14, 2024, 4:53 p.m.

      ❔❔❔


  • 2
    LeonLiur  commented on July 25, 2020, 4:38 p.m. edited

    Could someone take a look at my code? I don't know where the problem is, but I keep getting WA on test cases 1 and 3, I am using java 8. Thanks in advance!


    • 3
      maxcruickshanks  commented on July 25, 2020, 6:37 p.m.

      In your if-statement checking for zero, you have an unnecessary check that is causing you to WA (hint: you can completely remove isZero).


      • 5
        LeonLiur  commented on July 25, 2020, 11:47 p.m.

        I fixed if thanks to your comment, thanks a lot!


  • -1
    Charles232  commented on March 9, 2019, 4:01 p.m.

    Will 0 ever be the 1st number?


    • 17
      geese  commented on March 10, 2019, 3:18 a.m.

      No, the Boss doesn't have any possible mistakes to erase yet. The Boss's power is only able to skip back up to the amount of positive numbers given. It just works.