I have been trying this problem SIZECON at spoj. But i not find the best solution in python.
My solution is uses 46 characters. (and get the 46 score)
Here is my solution:
c=0
exec('b=input();c+=b*(b>0);'*input())
print c
And other solution (but get same score):
c=0
for i in input()*[0]:
b=input()
c+=b*(b>0)
print c
But in the best solution list there are people who solved 29 characters.
Any alternate suggestions to solve the problem?
Related question in stackoverflow:
- Shortest code in C Shortest code in C
t – number of test cases [t < 1000]andOn each of next t lines given a integer N [-1000 <= N <= 1000]– drewk Feb 17 '11 at 11:28