fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int t;
  6. cin >> t;
  7. while(t--){
  8. int n;
  9. cin >> n;
  10. int a1[n], a2[n];
  11. for(int i=0; i<n; i++){
  12. cin >> a1[i];
  13. a2[i] = (n+1) - a1[i];
  14. }
  15. for(int i=0; i<n; i++){
  16. cout << a2[i] << " ";
  17. }
  18. cout << endl;
  19. }
  20. return 0;
  21. }
Success #stdin #stdout 0.01s 5280KB
stdin
5
5
1 2 4 5 3
2
1 2
1
1
3
3 2 1
4
1 4 3 2
stdout
5 4 2 1 3 
2 1 
1 
1 2 3 
4 1 2 3