공부하기/백준

[Java] 백준 풀기 17010 - Time to Decompress

XEV 2023. 4. 18. 23:38

자바 백준 17010번

브론즈 3

https://www.acmicpc.net/problem/17010

 

17010번: Time to Decompress

The output should be L lines long. Each line should contain the decoding of the corresponding line of the input. Specifically, if line i+1 of the input contained N x, then line i of the output should contain just the character x printed N times.

www.acmicpc.net

 

 

 

 

 

문제 보기

분류: 구현

 

 

 

 

 

문제 풀기

입력받은 반복횟수와 문자에 대해 함수 repeat() 을 이용하여 답안 형식에 맞춰 출력한다.

 

 

 

 

 

코드 보기

import java.util.Scanner;

public class Main {
    public static void main(String args[]) {
        
        Scanner sc = new Scanner(System.in);
        
        int testCase = sc.nextInt();
        
        for (int i = 0; i < testCase; i++) {
            int repeatNum = sc.nextInt();
            String repeatCharacter = sc.next();
            
            System.out.println(repeatCharacter.repeat(repeatNum));
        }

    }
}