형 변환 한다고 시간이 꽤 걸렸다. 앞에서 썼던 것들을 잘 활용하면 쉽게 풀 수 있는 문제이다.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | |
} | |
} | |
} |
'백준 알고리즘 > JAVA' 카테고리의 다른 글
[JAVA 자바] 백준 2438번 별찍기-1 (0) | 2018.07.10 |
---|---|
[JAVA 자바] 백준 1157번 단어 공부 (0) | 2018.07.10 |
[JAVA 자바] 백준 10809번 알파벳 찾기 (0) | 2018.07.09 |
[JAVA 자바] 백준 11654번 아스키 코드 (0) | 2018.07.09 |
[JAVA 자바] 백준 10039번 평균 점수 (0) | 2018.07.09 |