Lopps 2 re ez a megoldás jó lehet?
Már egy hete keresgélek, mi lehetne a megoldás...
Az outputom ugyan az amit kér a szerver viszont valamiért elutasítja , hogy helytelen a megoldás.
import java.util.*;
import java.io.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int q=sc.nextInt();
for(int i=0;i<q;i++)
{
int a = sc.nextInt();
int b = sc.nextInt();
int n = sc.nextInt();
for (int j = 0; j < n; j++)
{
a += b * (int) Math.pow(2,j);
System.out.print(a + " ");
}
System.out.println();
}
sc.close();
}
}
Javaban kell.
A feladat pedig:
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 ai, bi, and ni values for that query.
Constraints
0 <= q <= 500
0 <= a, b <= 50
a <= 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.
Hints
- You can use: Math.pow(2, n)
- Make sure not to print any extra spaces at the ends of the lines!
Make sure not to print any extra spaces at the ends of the lines!
lehet ez?
Kapcsolódó kérdések:
Minden jog fenntartva © 2025, www.gyakorikerdesek.hu
GYIK | Szabályzat | Jogi nyilatkozat | Adatvédelem | Cookie beállítások | WebMinute Kft. | Facebook | Kapcsolat: info(kukac)gyakorikerdesek.hu
Ha kifogással szeretne élni valamely tartalommal kapcsolatban, kérjük jelezze e-mailes elérhetőségünkön!