Accepted
Code
#include <iostream>
using namespace std;
int main() {
// SAYED AL MAMUN_LU
int n, sum = 0;
cin >> n;
int i = 1;
while (i <= n) {
if (n % i == 0) {
sum++;
}
i++;
}
cout << sum << endl;
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1037 Generous CR
- Contest
- Brain booster #2
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-03-06 13:48:10
- Judged At
- 2024-11-11 03:42:09
- Judged By
- Score
- 100
- Total Time
- 4ms
- Peak Memory
- 768.0 KiB