0% found this document useful (0 votes)
298 views4 pages

Java Loops II - Java Question

Java Loops II _ Java Question

Uploaded by

Blake Payrice
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
298 views4 pages

Java Loops II - Java Question

Java Loops II _ Java Question

Uploaded by

Blake Payrice
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

⌂ Practice  Compete  Jobs  Leaderboard

Dashboard  Java  Introduction  Java Loops II

Java Loops II 
by Shafaet

Problem Submissions Leaderboard Discussions Editorial

We use the integers , , and to create the following series:

You are given queries in the form of , , and . For each query, print the series corresponding to the g
single line of space-separated integers.

Input Format

The first line contains an integer, , denoting the number of queries.


Each line of the subsequent lines contains three space-separated integers describing the respective
query.

Constraints

Output Format

For each query, print the corresponding series on a new line. Each series must be printed in order as a si
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

We have two queries:

1. We use , , and to produce some series :

... and so on.

Once we hit , we print the first ten terms as a single line of space-separated integers.

2. We use , , and to produce some series :

We then print each element of our series as a single line of space-separated values.
Current Buffer (saved locally, editable)   Java 7

1 ▾import java.util.*;
2 import java.io.*;
3
4 ▾class Solution{
5▾ public static void main(String []arg){
6 Scanner in = new Scanner(System.in);
7 int t=in.nextInt();
8▾ for(int i=0;i<t;i++){
9 double a = in.nextInt();
10 int b = in.nextInt();
11 int n = in.nextInt();
12 ▾ for(double j=0;j<n;j++){
13 a = a + (Math.pow(2,j)*b);
14 int myInt = (int) a;
15 System.out.print(myInt+" ");
16 }
17 System.out.print("\n");
18 }
19 in.close();
20 }
21 }
22

 Upload Code as File Test against custom input

Congrats, you solved this challenge!

✓ Test Case #0 ✓ Test Case #1


✓ Test Case #3 ✓ Test Case #4
You've earned 10.00 po

Copyright © 2017 HackerRank. All Rights Reserved

Join us on IRC at #hackerrank on freenode for hugs or bugs.


Contest Calendar | Interview Prep | Blog | Scoring | Environment | FAQ | About Us | Support | Careers | Terms
Of Service | Privacy Policy | Request a Feature

You might also like