EDIT: Hey I got the answer . The correct code is written below. As written as the answer, I should have kept the code in a try/except block I am trying to solve the "3n+1" a.k.a Collatz Conjecture problem at the SPOJ site. http://www.spoj.pl/problems/CLTZ/ . Here is the code I wrote : EDIT

import sys,os
#This is for the Collatz Conjecture problem in SPOJ.
while 1:
    try:
        line = sys.stdin.readline()
        n=int(line)
    except:
        break
    #print 'Line=',line

    #n=int(line)
    if(n==1):
        print n
        continue
    else:
        count=0
        while(n!=1):
            if(n%2==0):
                n = n/2
                count=count+1
            else:
                n= 3 * n + 1
                count=count+1
    print count+1

I am running into NZEC error. Some test cases that I have tried are :

123123
181
235
128
346
33
234
22
123
47
123
47
123
47
235
128
34
14
325
25
1234
133
123
47
125
109

I made the change which takes care of newline character . It still gives an error :( Please let me know where I am going wrong :(

link|improve this question

70% accept rate
feedback

2 Answers

up vote 1 down vote accepted

At the end of the input, you read an empty line, converting that to int raises an exception. Just wrap your code in a try-except or break from the loop when the read line is empty.

while 1:
    line = sys.stdin.readline()
    if line == "":
        break
    n=int(line)

If the above doesn't work,

while 1:
    try:
        line = sys.stdin.readline()
        n = int(line)
        #other stuff
    except:
        break

should get rid of NZEC.

But probably you will need to do something better to solve the problem within the time limit, the SPOJ problems rarely allow the naive approach.

link|improve this answer
Hey I made a change to handle newline character. It still gives the same NZEC thing :( I also tried doing if(not line): break . But that also gives the same thing – crazyaboutliv Dec 26 '11 at 19:11
Does the try-except (now added) work? – Daniel Fischer Dec 26 '11 at 19:26
Yes, thanks :) It does – crazyaboutliv Dec 28 '11 at 10:59
feedback

The best way I have found till now is this

import sys
for k in sys.stdin:
k = int(k)
if k==1:
   print k
   #.... rest  of the code

Hope this helps

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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