We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Manasa and Factorials
Manasa and Factorials
Sort by
recency
|
31 Discussions
|
Please Login in order to post a comment
Can someone please help me. I am getting time limit exceeded error for the below solution
import java.io.; import java.math.; import java.security.; import java.text.; import java.util.; import java.util.concurrent.; import java.util.function.; import java.util.regex.; import java.util.stream.*; import static java.util.stream.Collectors.joining; import static java.util.stream.Collectors.toList;
class Result {
}
public class Solution { public static void main(String[] args) throws IOException { BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(System.getenv("OUTPUT_PATH")));
}
a good article click
Hey , I am not sure what went wrong with this logic. it is giving time limit error for almost all the cases.https://calcularrfc.com.mx/ Any help would be appreciated
in the statement it is said that n<=1e16, but in the test cases there are values greater than that. maybe what was meant that n has at most 16 digits
Using Binary Search:
def solve(n): def count(x): res = 0 while x: t = x//5 res+=t x = t return res