FCDC - Factorial Modulo
You are given 2 integers a, b. Find the number of i for which i! is divisible by a but not b. if i! is divisible by a and b, then you should not count that i.
Input
One line that contains a and b.
Output
Output the result in one line.
Example
Input: 2 3 Output: 1
Constraints
1 ≤ a ≤ b ≤ 107
Explanation
2! is the only factorial which is divisible by 2 and not divisible by 3.
hide comments
changyouren:
2021-09-27 03:55:30
your answer should not be negative |
|
sankalp_7:
2021-06-26 11:23:40
Factorization + Binary search
|
|
tanardi gunawan:
2019-02-09 16:40:31
good problem |
|
akjol2049:
2018-11-22 16:29:22
nice problem..enjoyed solving it.Thanks Ruhan! |
|
puneethnaik:
2018-08-20 09:10:30
did it using binary search and highest power of a prime in n!. Enjoyed the problem. Hope it helps someone in need. All the best!!! |
|
eagleshadow:
2018-07-01 17:06:34
AC in 10 min :)
|
|
mag1x_:
2018-05-26 11:46:44
Factorization and brain storming :) |
|
excel_blaze:
2018-05-18 22:43:37
that's a easy one :)
|
|
holmesherlock:
2017-10-24 16:53:15
dont think too much,,simple logic will get you through
|
|
nadstratosfer:
2017-10-20 06:04:48
Seemed easy but took me good 2 hours to crack. The implementation is not so straightforward either - my code came out quite bloated - but considering half of C submissions are slower than my Python3 one, you can probably bruteforce in a few lines also. |
Added by: | Ruhan Habib |
Date: | 2015-11-05 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 GOSU JS-MONKEY |
Resource: | Own Problem |