The Careful Bank
An account starts at 0. Each transaction (positive deposit, negative withdrawal) is DECLINED if it would make the balance negative; otherwise it applies. Print the final balance and the number of declined transactions.
Input: the first line has N; the second line has the N transactions in order.
Output: two integers: final balance and declined count.
Constraints:
- 1 ≤ N ≤ 105
- |ti| ≤ 500
Sample Tests
Input 1
5 100 -30 -100 50 -20
Output 1
100 1
Input 2
2 -5 5
Output 2
5 1
Discussion (opens after you solve — no spoilers before)
No comments yet.