[D3] [S/W 문제해결 기본] 8일차 - 암호문2 - 1229
성능 요약
메모리: 28,016 KB, 시간: 188 ms, 코드길이: 1,067 Bytes
제출 일자
2023-11-01 13:28
출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do
import java.util.Scanner;
import java.util.LinkedList;
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();
LinkedList<Integer> list = new LinkedList<>();
for(int i = 0; i < n; i++){ list.add(sc.nextInt());}
int c = sc.nextInt();
for(int i = 0; i < c; i++){
String cmd = sc.next();
int x = sc.nextInt();
int y = sc.nextInt();
if(cmd.equals("I")){
while(y --> 0){
list.add(x++,sc.nextInt());
}
}
else{
while(y --> 0){
list.remove(x);
}
}
}
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 4789번 성공적인 공연 기획 자바(Java) (1) | 2023.11.02 |
---|---|
[SW expert Academy] SWEA 3456번 직사각형 길이 찾기 자바(Java) (1) | 2023.11.01 |
[SW expert Academy] SWEA 5986번 새샘이와 세 소수 자바(Java) (0) | 2023.11.01 |
[SW expert Academy] SWEA 4698번 테네스의 특별한 소수 자바(Java) (1) | 2023.11.01 |
[SW expert Academy] SWEA 4466번 최대 성적표 만들기 자바(Java) (1) | 2023.11.01 |