Accepted
Code
#include<iostream>
using namespace std;
int main(){
int n,count=0;
cin>>n;
for(int i=1; i<=n/2; i++){
if(n%i==0){
count++;
}
}
cout<<count+1<<endl;
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1037 Generous CR
- Contest
- Brain booster #2
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-03-06 15:08:23
- Judged At
- 2024-11-11 03:41:43
- Judged By
- Score
- 100
- Total Time
- 4ms
- Peak Memory
- 540.0 KiB