Wrong Answer
Code
#include <bits/stdc++.h>
using namespace std;
int32_t main () {
int t = 1;
cin >> t;
while (t--) {
int n, x, ans = INT_MAX;
cin >> n;
if (n%2) {
for (int i = 1; i*i <= n; i++) {
if (n%i == 0) {
ans = min (ans, min (i, (n/i)));
}
}
}
else ans = n/2;
cout << ans << "\n";
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1052 Yet Another Array Partition
- Contest
- Brain Booster #3
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-05-06 15:15:35
- Judged At
- 2024-11-11 03:34:51
- Judged By
- Score
- 10
- Total Time
- 2ms
- Peak Memory
- 536.0 KiB