Accepted
Code
#include <bits/stdc++.h>
#define int long long
using namespace std;
signed main() {
ios::sync_with_stdio(false), cin.tie(nullptr);
int t (1); //cin >> t;
while (t--) {
int n, ans (0); cin >> n;
for (int i (1); i * i <= n; i++) {
if (n % i == 0) ans += 2;
}
ans -= (sqrt(n) * sqrt(n) == n);
cout << (n != 1 ? ans : 1) << '\n';
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1037 Generous CR
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-03-26 10:21:28
- Judged At
- 2024-11-11 03:40:16
- Judged By
- Score
- 100
- Total Time
- 1ms
- Peak Memory
- 536.0 KiB