Time Exceeded
Code
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> getDiv(int n) {
vector<int> div;
for (int i = 2; i <= n; i++) {
if (n % i == 0) {
div.push_back(i);
}
}
return div;
}
int main() {
int t;
cin >> t;
while (t--) {
int n;
cin >> n;
vector<int> divisors = getDiv(n);
int maxPartitions = 1;
for (int i : divisors) {
int partitions = n / i;
if (partitions >= 1 && i >= 2) {
maxPartitions = max(maxPartitions, partitions);
}
}
cout << maxPartitions << endl;
}
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:55:55
- Judged At
- 2024-11-11 03:33:40
- Judged By
- Score
- 25
- Total Time
- ≥1090ms
- Peak Memory
- ≥712.0 KiB