Accepted
Code
#include <bits/stdc++.h>
#ifdef LOCAL
#include "../algo/debug.h"
#else
#define debug(...) 0
#endif
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int tt;
cin >> tt;
while (tt--) {
int n;
cin >> n;
int ans = 1;
for (int i = 2; i * i <= n; i++) {
if (n % i == 0) {
ans = max(ans, i);
ans = max(ans, n / i);
break;
}
}
cout << ans << '\n';
}
return 0;
}
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:11:18
- Judged At
- 2024-11-11 03:35:01
- Judged By
- Score
- 100
- Total Time
- 916ms
- Peak Memory
- 632.0 KiB