코딩/coding test (6) 썸네일형 리스트형 [Python] 자료구조 - 배열과 리스트, 숫자의 합 구하기 배열과 리스트배열과 리스트는 기본적인 자료구조 형태이므로,두 자료구조의 특징과 동작 원리를 알아두어야할 필요가 있다.비슷하지만 다른 두 자료구조를 비교해보고,이것을 이용한 문제를 풀며 함께 탐구해보자.배열- 메모리의 연속 공간에 값이 채워져 있는 형태의 자료구조- 배열의 값은 인덱스를 통해 참조, 선언한 자료형의 값만 저장 배열의 특징- 인덱스를 사용하여 값에 바로 접근할 수 있음 #장점- 새로운 값을 삽입하거나 특정 인덱스에 있는 값을 삭제하기 어렵다, #단점(값을 삽입하거나 삭제하려면 해당 인덱스 주변의 값을 이동시켜야 함)- 배열의 크기는 선언할 때 지정할 수 있으며, 한번 선언하면 크기를 늘리거나 줄일 수 x #단점 리스트- 값과 포인터를 묶은 노드라는 것을 포인터로 연결한 자료구조 리스트의 특징.. [JAVA] 백준 15552번: 빠른 A+B import java.util.Scanner; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.util.StringTokenizer; public class Main { public static void main (String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = new BufferedWriter(new OutputStrea.. [JAVA] 백준 8393번: 합 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int sum = 0; for(int i=1; i [JAVA] 백준 10950번: A+B - 3 import java.util.Scanner; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); for(int i=0; i [JAVA] 백준 2739번: 구구단 import java.util.Scanner; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); for(int i=1; i [JAVA] 백준 2480번 : 주사위 세개 import java.util.Scanner; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); int z = sc.nextInt(); if( x==y && y==z && z==x ) { System.out.println(10000 + x * 1000); } else if ( x==y || x==z ) { System.out.println(1000 + x * 100); } else if ( y==z ) { System.out.println(1000 + y * 100); } else { if ( x > .. 이전 1 다음