Advertisement
Flaron

Progmasters 8. feladat

Jun 18th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. 08 - Loops II
  2. Task
  3. We use the integers a, b, and n to create the following series:
  4.  
  5. (a + 20 x b), (a + 20 x b + 21 x b), ... ,(a + 20 x b + 21 x b + ... + 2n-1 x b)
  6.  
  7. You are given q queries in the form of a, b, and n. For each query, print the series corresponding to the given a, b, and n values as a single line of n space-separated integers.
  8.  
  9.  
  10. Input Format
  11. The first line contains an integer, q, denoting the number of queries. Each line i of the q subsequent lines contains three space-separated integers describing the respective ai, bi, and ni values for that query.
  12.  
  13.  
  14. Constraints
  15.  
  16. 0 <= q <= 500
  17. 0 <= a, b <= 50
  18. a <= n <= 15
  19.  
  20.  
  21. Output Format
  22. For each query, print the corresponding series on a new line. Each series must be printed in order as a single line of n space-separated integers.
  23.  
  24.  
  25. Hint
  26. Make sure not to print any extra spaces at the ends of the lines!
  27.  
  28. Sample input
  29. 2
  30. 0 2 10
  31. 5 3 5
  32. Sample output
  33. 2 6 14 30 62 126 254 510 1022 2046
  34. 8 14 26 50 98
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement