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