Accepted
Code
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
using namespace std;
void solve(int cs) {
int n;
cin >> n;
int cnt = 0;
for (int i = 1; i * i <= n; i++) {
if (n % i == 0) {
cnt += 1;
if (n / i != i) cnt += 1;
}
}
cout << cnt << "\n";
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int tc = 1;
// cin >> tc;
for (int cs = 1; cs <= tc; cs++) {
solve(cs);
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1037 Generous CR
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-07-10 18:48:58
- Judged At
- 2024-11-11 03:27:54
- Judged By
- Score
- 100
- Total Time
- 2ms
- Peak Memory
- 556.0 KiB