형 변환 한다고 시간이 꽤 걸렸다. 앞에서 썼던 것들을 잘 활용하면 쉽게 풀 수 있는 문제이다.

import java.util.Scanner;
public class Main {
public static void main(String[] args){
int[] ch =new int[30]; //문자열을 나눠 저장하기위한 배열
char[] ch2 = new char[30]; //ch저장된 아스키코드값을 다시 문자로 바꾸기 위한 배열
int cnt= 0;
Scanner sc = new Scanner(System.in);
int a = Integer.parseInt(sc.nextLine());
for(int i=0; i<a; i++) {
String b= sc.nextLine();
String[] c= b.split(" ");
cnt = Integer.parseInt(c[0]);
for(int j=0; j<c[1].length(); j++) {
ch[j] = b.charAt(j+2);
ch2[j] = (char)ch[j];
for(int x=0; x<cnt; x++) {
System.out.print(ch2[j]);
}
}
System.out.println();
}
}
}
view raw test.java hosted with ❤ by GitHub

+ Recent posts