Create problem: Ksusha and Array #298
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The problem is that your code has a time complexity due to the nested loops.
For an array of size 10^5, this would require up to 10^10 operations, which is too many for a program with a 2-second time limit.
My proposed solution would be to check for the minimum element in the array, and then check if all the elements are divisible by that minimum element.
If there is a number in the array that divides all numbers, it must divide the minimum element as well.
Here is one way to implement it:
Feel free to ask follow-ups. Good luck coding!