please help me friends.. i want to multpliy a number say x=100000 and y=100000 ; and the result is to be modulo by 1000000007. how should i approach to this i tried everything ...
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3611 |
| 4 | jiangly | 3583 |
| 5 | strapple | 3515 |
| 6 | tourist | 3470 |
| 7 | Radewoosh | 3415 |
| 8 | Um_nik | 3376 |
| 9 | maroonrk | 3361 |
| 10 | XVIII | 3345 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 162 |
| 2 | adamant | 148 |
| 3 | Um_nik | 146 |
| 4 | Dominater069 | 143 |
| 5 | errorgorn | 141 |
| 6 | cry | 138 |
| 7 | Proof_by_QED | 136 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 10 | soullless | 133 |
please help me friends.. i want to multpliy a number say x=100000 and y=100000 ; and the result is to be modulo by 1000000007. how should i approach to this i tried everything ...
| Name |
|---|



Haven't you tried 8-bytes data types? Something like
result = (long long) x * y % 1000000007"i tried everything"
:D:D:D:D
i think there is no problem with that since x and y are quite small number. just do it straightforward (x*y)%1000000007 . remember use long long in C++. if x and y are too big , you may consider this identity : (a*b)%c = (a%c * b%c )%c . CMIIW
Also, if you need to multiply some realy big numbers (say x=1e15, y=1e17), and mod is something like 1e18, you may use this idea:
mult(a,b)%c=mult(a*2%c,b/2)%c for even b
and
mult(a,b)%c=(mult(a,b-1)%c+a)%c for odd b.
It's easy to implement recursively.
You can youse BIGMOD