fork(1) download
  1. #include <iostream>
  2. #include <algorithm>
  3. using namespace std;
  4.  
  5. int main() {
  6. long long n;
  7. cin>>n;
  8. long long x[n];
  9. for(int i=0;i<n;i++)
  10. {
  11. cin>>x[i];
  12. }
  13. int ind=0;
  14. for(int i=0;i<n-1;i++)
  15. {
  16. if(x[i]!=0)
  17. {
  18. ind=find(x+ind,x+n,x[i]*4/3)-x;
  19. cout<<x[i]<<'\n';
  20. x[ind]=0;
  21. }
  22. }
  23. return 0;
  24. }
Success #stdin #stdout 0s 15240KB
stdin
6
30
40
42
45
56
60
stdout
30
42
45