-
Notifications
You must be signed in to change notification settings - Fork 690
Expand file tree
/
Copy pathSolution.java
More file actions
53 lines (47 loc) · 1.4 KB
/
Solution.java
File metadata and controls
53 lines (47 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//Task 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.
//
//Input Format
//
//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 a-th b-th and n-th values for that query.
//
//Constraints
// 0<= q <= 500
// 0<= a,b <= 50
// 1<= n <= 15
//Output Format
//
//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.
//
//Sample Input
//
//2
//0 2 10
//5 3 5
//Sample Output
//
//2 6 14 30 62 126 254 510 1022 2046
//8 14 26 50 98
//Explanation png located on git
import java.util.*;
import java.io.*;
import java.lang.Math.*;
class Solution{
public static void main(String []args){
Scanner in = new Scanner(System.in);
int t=in.nextInt();
for(int i=0;i<t;i++){
int a = in.nextInt();
int b = in.nextInt();
int n = in.nextInt();
int calc = a;
for(int j=0;j<n;j++)
{
calc+=(Math.pow(2,j)*b);
System.out.print(calc+" ");
}
System.out.println();
}
in.close();
}
}