what is the correct way to impose this contraint -100000000 <= A[i] <= 100000000 ?
Constraint impose
@S19WDPP0014 For such constraints, instead of using int…just use long long int.
This will handle the very large numbers given as input. For storing numbers greater than equal to 10^8, you should always use long long int.