Cod sursa(job #5643)
Utilizator | Data | 13 ianuarie 2007 15:46:24 | |
---|---|---|---|
Problema | Descompuneri | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.31 kb |
#include <cstdio>
#include <cmath>
int main() {
freopen("desc.in", "rt", stdin);
/* long long N;
int j, stop, cnt;
int *V;
scanf(" %lld", &N);
stop = (int) sqrt((double) N);
cnt = 0;
for (j = 1; j < stop; ++j)
if (N % j == 0) cnt += 2;
if (N % stop == 0) ++cnt;
V = new int[cnt];
*/
return 0;
}