Advertisement
Araf_12

Modulo_Exponentiation

Oct 18th, 2024
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | Source Code | 0 0
  1. int mod = 1e9+7;
  2.     int modpow(long base, int exp) {
  3.         long result = 1;
  4.         while (exp) {
  5.             if (exp & 1) {
  6.                 result *= base;
  7.                 result %= mod;
  8.             }
  9.             base *= base;
  10.             base %= mod;
  11.             exp >>= 1;
  12.         }
  13.         return result;
  14.     }
  15.  
  16. const long pow = modpow(multiplier, k / n); // log(10^9) - 50
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement