Accepted
Code
#include <stdio.h>
int main() {
int n;
scanf("%d", &n);
int ways = 0;
for (int i = 1; i * i <= n; i++) {
if (n % i == 0) {
ways++;
if (i != n / i) {
ways++;
}
}
}
printf("%d\n",ways);
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1037 Generous CR
- Contest
- Brain booster #2
- Language
- C99 (GCC 13.2.0)
- Submit At
- 2024-03-06 15:16:13
- Judged At
- 2024-11-11 03:41:42
- Judged By
- Score
- 100
- Total Time
- 1ms
- Peak Memory
- 516.0 KiB