문제
원본 문서는 너비가 10인 여러 줄의 문자열로 이루어져 있다.
압축한 문서는 알파벳과 그 알파벳의 연속된 개수로 이루어진 쌍들이 나열되어 있다. (예 : A 5 AAAAA)
압축된 문서를 입력 받아 원본 문서를 만드는 프로그램을 작성하시오.
풀이방법
입력받은 순서대로 문자의 개수만큼 문자를 리스트에 담고 출력한다. 이 때, 10을 단위로 개행해준다.
소스코드
package samsung;
import java.util.*;
public class s_1946 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int test = sc.nextInt();
for(int t = 1; t <= test; t++) {
int n = sc.nextInt();
int l = 0;
ArrayList<String> a = new ArrayList();
for(int i = 0; i < n; i++) {
String s = sc.next();
int num = sc.nextInt();
if(i == 0)
l = num;
for(int j = 0; j < num; j++) {
a.add(s);
}
}
System.out.println("#" + t + " ");
for(int i = 0; i < a.size(); i++) {
if(i % 10 == 0 && i != 0)
System.out.println();
System.out.print(a.get(i));
}
System.out.println();
}
}
}
'Problem Solving > SWEA' 카테고리의 다른 글
[SWEA] 1954. 달팽이 숫자 (0) | 2020.02.09 |
---|---|
[SWEA] 1948. 날짜 계산기 (0) | 2020.02.09 |
[SWEA] 1945. 간단한 소인수분해 (0) | 2020.02.09 |
[SWEA] 1289. 원재의 메모리 복구하기 (0) | 2020.02.09 |
[SWEA] 1285. 아름이의 돌 던지기 (0) | 2020.02.09 |
댓글