Submit solution
Points:
15
Time limit:
2.0s
Memory limit:
64M
Problem type
Allowed languages
Ada, Assembly, Awk, Brain****, C, C++, COBOL, CommonLisp, Dart, Erlang, Forth, Fortran, Intercal, Lisp, Octave, Pascal, Prolog, R, Racket, Rust, Scheme, Sed, TCL, Text, Turing, VB
Brute Force Practice 3 — Hard Version
You love prime numbers. You own a number, but you suspect it might not be prime. You want a prime number, but it must be at least as large as the number you currently own. Find the smallest number that satisfies those conditions.
Input
The first line will have the integer (
)
Output
Print the number you want.
Sample Input
4
Sample Output
5
Comments
Why is there an AC Java 9 submission
cases #3-10 give me a WA any tips?
Look at the constraints on N. Also a tip you can use i*i<n instead of i<sqrt(n) to be sure that the calculations are precise.
i*i < n gives me a TLE
TLE means that your code is too slow.
Hint
can I have any hints?
keep getting WA MLE and TLE.
Your code is wrong, takes up too much memory, and is too slow.
Thx man.
I'm probably just gonna learn some math.
Why is java disabled?
java.math.BigInteger
has a method calledisProbablePrime()
, which would trivialize the problem.oh ok
This comment is hidden due to too much negative feedback. Click here to view it.
The time is the total time, not the average
RIP
oops
What is submitting code in python not allowed for this problem?
Can we have Python <3
This comment is hidden due to too much negative feedback. Click here to view it.
Partial output is disabled for this problem.