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:

link|improve this question
This does not test the required input criteria either. t – number of test cases [t < 1000] and On each of next t lines given a integer N [-1000 <= N <= 1000] – drewk Feb 17 '11 at 11:28
@drewk: it does not have to check. the presumption in such problems is that the data is correct as described (i.e. there will be exactly as many numbers as the first number says and they will be in the range) – Nas Banov Feb 18 '11 at 1:23
7  
You should ask at codegolf.stackexchange.com. – Anna Lear Feb 18 '11 at 1:35
I can do it in 37 chars but don't feel i can do any better than that – Nas Banov Feb 18 '11 at 3:31
feedback

closed as too localized by dmckee, Robert Harvey Feb 20 '11 at 22:10

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

2 Answers

A bit smaller:

c=0
i=input
exec('b=i();c+=b*(b>0);'*i())
print c
link|improve this answer
Thank you. Thats get 45 score. – gmunkhbaatarmn Feb 17 '11 at 12:49
feedback

My guess is that you get rid of the keywords "input" and "print".

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.