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