[D3] [S/W 문제해결 기본] 8일차 - 암호문3 - 1230
성능 요약
메모리: 90,420 KB, 시간: 356 ms, 코드길이: 1,264 Bytes
제출 일자
2023-10-31 11:03
출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do
import java.util.LinkedList;
import java.util.Scanner;
class Solution
{
public static void main(String args[]) throws Exception {
Scanner sc = new Scanner(System.in);
int T = 10;
for(int tc = 1; tc <= T; tc++)
{
int n = sc.nextInt();
LinkedList<Integer> list = new LinkedList<>();
for(int i = 0; i < n; i++){ list.add (sc.nextInt()); }
int m = sc.nextInt();
for(int i = 0; i < m; i++){
String command = sc.next();
if(command.equals("I")){
int idx = sc.nextInt();
int count = sc.nextInt();
while(count --> 0){ list.add(idx++, sc.nextInt()); }
}else if(command.equals("D")){
int idx = sc.nextInt();
int count = sc.nextInt();
while(count --> 0){ list.remove(idx); }
}else{
int count = sc.nextInt();
while(count --> 0){ list.add(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 5431번 민석이의 과제 체크하기 자바(Java) (0) | 2023.10.31 |
---|---|
[SW expert Academy] SWEA 6808번 규영이와 인영이의 카드게임 자바(Java) (0) | 2023.10.31 |
[SW expert Academy] SWEA 5688번 세제곱근을 찾아라 자바(Java) (0) | 2023.10.31 |
[SW expert Academy] SWEA 3408번 세가지 합 구하기 자바(Java) (0) | 2023.10.31 |
[SW expert Academy] SWEA 5789번 현주의 상자 바꾸기 자바(Java) (0) | 2023.10.31 |