Wrong Answer
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;
}
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:17:48
- Judged At
- 2024-11-11 03:40:17
- Judged By
- Score
- 35
- Total Time
- 1ms
- Peak Memory
- 532.0 KiB