problem link [http://www.codeforces.com/contest/248/problem/B]
# | User | Rating |
---|---|---|
1 | tourist | 3856 |
2 | jiangly | 3747 |
3 | orzdevinwang | 3706 |
4 | jqdai0815 | 3682 |
5 | ksun48 | 3591 |
6 | gamegame | 3477 |
7 | Benq | 3468 |
8 | Radewoosh | 3462 |
9 | ecnerwala | 3451 |
10 | heuristica | 3431 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | -is-this-fft- | 162 |
3 | Dominater069 | 160 |
4 | Um_nik | 158 |
5 | atcoder_official | 157 |
6 | Qingyu | 155 |
7 | djm03178 | 151 |
7 | adamant | 151 |
9 | luogu_official | 150 |
10 | awoo | 147 |
problem link [http://www.codeforces.com/contest/248/problem/B]
Name |
---|
The least common multiple of this numbers (2,3,5,7) is 210. So you are asked to find smallest n-digit number, which is divisible by 210.
Let's take smallest n-digit number X=(10^(n-1)). We can consider all numbers from X to X+210 and choose the one, which is divisible* by 210. Of course that one will be the answer.
*Since X is very large (maximum 10^5 digits), you've got to use "long integer arithmetics".
Thanks a lot. My solution in python runned out of time using same approach.
Hers is O(n) solution:
Let dp[i] be the remainder of 10^i when divided by 210. dp[0]=1; dp[i+1]=(dp[i]*10)mod 210;
We can precalculate dp[0...10^5] in O(10^5) time.
Let's take smallest n-digit number (10^(n-1)). It gives dp[n-1] as a remainder when divided by 210. Therefore (10^(n-1))-dp[n-1]+210 is divisible by 210.
So, 10^(n-1)-dp[n-1]+210 is the answer.
The answer will be a number of following type :
First digit will be equal to 1.
The number obtained by last three digits together should be equal to 210-dp[n-1].
all other digits will be equal to 0.
Thanks a lot, this sure helps.