Pagini recente » Diferente pentru problema/zigzag intre reviziile 4 si 5 | Diferente pentru utilizator/cdascalu intre reviziile 5 si 4 | Cod sursa (job #2554801) | Cod sursa (job #978085) | Cod sursa (job #5644)
Cod sursa(job #5644)
#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;
}