Cod sursa(job #3141170)
| Utilizator | Data | 13 iulie 2023 09:30:48 | |
|---|---|---|---|
| Problema | Ridicare la putere in timp logaritmic | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva educationala | Marime | 0.56 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("lgput.in");
ofstream fout("lgput.out");
const int DIVISOR = 1999999973;
long long power(int a, int b) {
if (b == 0) {
return 1;
}
long long num = powerRising(a, b / 2);
if (b % 2 == 0) {
return result * result % DIVISOR;
}
return ((long long) (num % DIVISOR) * (num % DIVISOR) % DIVISOR) * (a % DIVISOR) % DIVISOR;
}
int main() {
int base, power;
fin >> base >> power;
fout << power(base, power);
return 0;
}
