HW1_CEN109_2017 |
Старт: 20.янв.2018 в 11:48:29
Финиш: 28.янв.2018 в 05:00:15
Турнир завершён!
• Турнирная таблица
|
|
Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб. bfs.
We use the integers a, b, and n to create the following series:
(a +20 *b),( a+ 20 *b +21 *b),..., (a+20 *b+21 *b+...+2n-1 *b)
You are given the querie in the form of a,b , and n. For this query, print the series corresponding to the given a,b , and n values as a single line of space-separated integers.
Input Format
The line contains three space-separated integers describing the respective a,b , and n values for that query.
Constraints
- 0<=a<=150
- 0<=b<=120
- 0<=n<=25
Output Format
For the given query, print the corresponding series on a line. The series must be printed in order as a single line of space-separated integers.
Sample Input |
0 2 10 |
Sample Output |
2 6 14 30 62 126 254 510 1022 2046 |
Для отправки решений необходимо выполнить вход.
|