Accepted
Code
#include<stdio.h>
int main(){
long long int a,i, b=0;
scanf("%lld",&a);
for ( i=1;i<=a;i++){
if(a%i==0){
b++;
}
}
printf("%lld\n",b);
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 14:59:59
- Judged At
- 2024-11-11 03:41:46
- Judged By
- Score
- 100
- Total Time
- 11ms
- Peak Memory
- 516.0 KiB