fork download
  1. #include <iostream>
  2. #include <cmath>
  3.  
  4. using namespace std;
  5.  
  6. pair<int, int> fun(long long k) {
  7. // Direct calculation of n using quadratic formula
  8. int n = ceil((-1.0 + sqrt(1 + 8.0 * k)) / 2.0);
  9.  
  10. // Sum of elements before the nth row
  11. long long count = (n * (n - 1)) / 2;
  12.  
  13. // Find m
  14. int m = k - count - 1;
  15.  
  16. return {m, n};
  17. }
  18.  
  19. int main() {
  20. ios::sync_with_stdio(false);
  21. cin.tie(nullptr);
  22.  
  23. int T;
  24. cin >> T;
  25.  
  26. while (T--) {
  27. long long k;
  28. cin >> k;
  29.  
  30. pair<int, int> result = fun(k);
  31. cout << result.first << " " << result.second << "\n";
  32. }
  33.  
  34. return 0;
  35. }
  36.  
Success #stdin #stdout 0.01s 5296KB
stdin
6
31
10
1997
1
3
5
stdout
2 8
3 4
43 63
0 1
1 2
1 3