Accepted
Code
#include <stdio.h>
int main()
{
int n;
scanf("%d",&n);
int count = 0;
for (int i = 1; i <= n; i++){
if (n % i == 0){
count++;
}
}
printf("%d\n",count);
}
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:10:47
- Judged At
- 2024-11-11 03:42:05
- Judged By
- Score
- 100
- Total Time
- 3ms
- Peak Memory
- 552.0 KiB