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