Mai intai trebuie sa te autentifici.
Cod sursa(job #2439796)
Utilizator | Data | 16 iulie 2019 21:42:19 | |
---|---|---|---|
Problema | Cel mai lung subsir comun | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva educationala | Marime | 0.37 kb |
#include<fstream>
using namespace std;
#define modulo 1999999973
/*int main()
{
ifstream fin("lgput.in");
ofstream fout("lgput.out");
int long n, p, r;
fin >> n >> p;
r = 1;
while (p)
{
if (p % 2)
r = (1LL * r * n) % modulo;
n = (1LL * n * n) % modulo;
p = p / 2;
}
fout << r;
return 0;
}*/
int main()
{
return 0;
}