already tested on http://ideone.com/isqXc :

import java.io.*;
import java.util.*;
import java.lang.Math.*;

public class Main 
{
    public static void main(String[] args)
    {
        try
        {
            Scanner in = new Scanner(System.in);
            long t=in.nextLong();
            for (long i = 0; i < t; i++) 
            {   
                long m=in.nextLong();
                long number=0;
                long ind_pow=(long)((double)Math.log(m)/(double)Math.log(5)); 
                for (long j = 1; j <= ind_pow; j++)
                {
                    number=number+(long)(m/(Math.pow(5,j)));
                }
                System.out.println(number);
            }
            return;
        }
        catch (Exception e) {
            return;
        }

    }
}
link|improve this question
3  
It's very difficult to understand what you're asking for here. The link to ideone shows this program executes without errors, so what's your question? – Mark Elliot Jul 30 '11 at 21:21
well on spoj; i get runtime error (NZEC) – abualy Jul 30 '11 at 21:31
Maybe others know what it is, but personally I'm unfamiliar with what "NZEC" stands for, what "spoj" is, and certainly have no idea what runtime exception is being thrown from your description. Perhaps you can exactly repeat for us the runtime exception, and define these acronyms you're using. – Mark Elliot Jul 30 '11 at 21:33
Would you tell us which problem is this? – Ziyao Wei Jul 30 '11 at 21:33
it's factorial problem spoj.pl/problems/FCTRL – abualy Jul 30 '11 at 21:36
show 4 more comments
feedback

closed as not a real question by Mark Elliot, svick, Jeff Atwood Aug 1 '11 at 5:02

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

I'm not sure what your problem is, but the first thing to do is to print stacktrace (e.printStackTrace()) instead of returning in catch{...} block. This might not be the answer to your specific problem, but properly caught exceptions is a good way to follow if you don't want to be stuck with similar problems over and over.

link|improve this answer
Sorry but in Online Judge systems you cannot always get the full result. That's the point of this problem:( – Ziyao Wei Jul 30 '11 at 22:32
already tried it and didn't work!! thks anyway for replying ^^ – abualy Jul 30 '11 at 22:37
feedback

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