Hello Everyone,
I was solving problem 1503B - 3-Coloring and my submission is 144772587 getting desired answer on my IDE but getting different answer on CodeForces.
Any solution to fix this?
# | User | Rating |
---|---|---|
1 | tourist | 3671 |
2 | jiangly | 3653 |
3 | Um_nik | 3629 |
4 | Benq | 3513 |
5 | ksun48 | 3486 |
6 | MiracleFaFa | 3466 |
7 | slime | 3452 |
8 | maroonrk | 3422 |
9 | Radewoosh | 3406 |
10 | greenheadstrange | 3393 |
# | User | Contrib. |
---|---|---|
1 | awoo | 188 |
2 | -is-this-fft- | 187 |
3 | YouKn0wWho | 182 |
4 | Um_nik | 179 |
5 | Monogon | 178 |
6 | antontrygubO_o | 172 |
7 | maroonrk | 165 |
8 | SecondThread | 163 |
8 | SlavicG | 163 |
8 | adamant | 163 |
Hello Everyone,
I was solving problem 1503B - 3-Coloring and my submission is 144772587 getting desired answer on my IDE but getting different answer on CodeForces.
Any solution to fix this?
Please help me solving this problem I am not getting any idea for this.
Problem ->
Given a number N , consider all whole numbers ≤ N , ie, (0,1,…,N) . Find the sum of the bitwise AND of all consecutive numbers.
For example, the bitwise AND of 5= 101 and 7= 111
(5&7)=( 101 & 111 )=101 =5
Since this sum can very large, print the final answer modulo 109+7
(Note: Be careful of overflows while dealing with large numbers.)
Name |
---|