[D3] [S/W 문제해결 기본] 8일차 - 암호문1 - 1228
성능 요약
메모리: 23,816 KB, 시간: 152 ms, 코드길이: 892 Bytes
제출 일자
2023-10-28 04:16
출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do
import java.util.*;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
for(int tc = 1; tc <= 10; tc++)
{
int n = sc.nextInt();
List<Integer> list = new LinkedList<>();
for(int i = 0; i < n; i++){
list.add(sc.nextInt());
}
int command = sc.nextInt();
for(int i = 0; i < command; i++){
sc.next();
int pos = sc.nextInt();
int count = sc.nextInt();
for(int j =0; j < count; j++){
list.add(pos+j,sc.nextInt());
}
}
System.out.print("#" + tc+ " ");
for(int i = 0; i < 10; i++){
System.out.print(list.get(i)+ " " );
}
System.out.println();
}
}
}
'알고리즘 - SWEA > D3' 카테고리의 다른 글
[SW expert Academy] SWEA 9317번 석찬이의 받아쓰기 자바(Java) (0) | 2023.10.28 |
---|---|
[SW expert Academy] SWEA 11688번 Calkin-Wilf truee 1 자바(Java) (1) | 2023.10.28 |
[SW expert Academy] SWEA 1213번 String 자바(Java) (1) | 2023.10.28 |
[SW expert Academy] SWEA 10570번 제곱 팰린드롬 수 자바(Java) (0) | 2023.10.27 |
[SW expert Academy] SWEA 12221번 구구단2 자바(Java) (0) | 2023.10.27 |