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