Wrong Answer
Code
#include<stdio.h>
int main()
{
int N,i,count=0;
scanf("%d",&N);
for(i=1; i<=N; i++)
{
if(N%i==0)
count++;
}
printf("%d",count);
}
Information
- Submit By
- Type
- Submission
- Problem
- P1037 Generous CR
- Contest
- Brain booster #2
- Language
- C99 (GCC 13.2.0)
- Submit At
- 2024-03-06 14:16:31
- Judged At
- 2024-11-11 03:42:03
- Judged By
- Score
- 0
- Total Time
- 0ms
- Peak Memory
- 412.0 KiB