Accepted
Code
#include <stdio.h>
int main() {
int N;
scanf("%d", &N);
int ways = 0;
for (int i = 1; i <= N; i++) {
if (N % i == 0) {
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 16:06:36
- Judged At
- 2024-11-11 03:41:26
- Judged By
- Score
- 100
- Total Time
- 4ms
- Peak Memory
- 416.0 KiB