본문 바로가기

분류 전체보기

(183)
7568 덩치 / 브루트포스 n = int(input()) # 사람 수humans = [] # 덩치가 담긴 리스트ranking = [] # 순위가 담긴 리스트for i in range(n): x, y = map(int, input().split()) humans.append([x, y])for i in range(n): count = 1 for h in humans: if h[0] > humans[i][0] and h[1] > humans[i][1]: count += 1 ranking.append(count)for i in ranking: print(i, end=" ")
자료구조 요리 레시피 메모장 만들기 / Iterator package week02.collection;import java.util.*;public class Col1 { public static void main(String[] args) { ArrayList arrayList = new ArrayList(); Set set = new LinkedHashSet(); Map map = new LinkedHashMap(); Scanner sc = new Scanner(System.in); String dataStructure = sc.nextLine(); String title = sc.nextLine(); int idx = 1; int mapIdx = 1..
Array / List / Stack / Queue / Set / Map Array정적 배열, 선언시에 크기를 지정해 줘야 함리스트보다 삽입, 삭제가 느리지만 조회가 빠름생성 : int[] intArray = new int[3]; / int[] array = {1,2,3,4};길이 : intArray2.length동일한 값으로 넣기 : Arrays.fill(intArray, 1);public class Arr01 { public static void main(String[] args) { //배열 생성 int[] intArray = new int[3]; //{0,0,0} int[] array = {1,2,3,4}; boolean[] boolArray = new boolean[3]; //{false, false, false..
자바 기본 문법 / 얕은 복사와 깊은 복사 / String 자동 형변환여러 타입의 변수 여러 개를 연산했을 때, 결과값은 가장 큰 타입의 피연산자 타입으로 변환됨!float + double => doublepublic class W02 { public static void main(String[] args) { // 자동 형변환 int a = 10; int b = 329; float af = a; float bf = b; float cf = 35.0f + a; // 실수로 나온다! System.out.println(af); System.out.println(bf); System.out.println(cf); }} 삼항연산자 & 비트연산자p..
자바 알고리즘 연습(2) 각도기class Solution { public int solution(int angle) { int answer = 0; if (0  짝수의 합class Solution { public int solution(int n) { int answer = 0; for (int i = 1; i  배열의 평균값배열의 길이를 조회할 때는 배열이름.lengthclass Solution { public double solution(int[] numbers) { double answer = 0; for (int i = 0; i  짝수와 홀수class Solution { public double solution(..
2231 분해합 / 브루트포스 1. 각각의 자릿수를 문자열로 바뀌서 더하기n = int(input())ans = 0for i in range(n): num = i #자기 자신 더하기 j = str(i) for k in j: #각 자리수 더하기 num += int(k) if num == n: #조건에 해당된다면 값 리턴 ans = i breakprint(ans) 2. 각각의 자릿수를 나머지 연산을 이용하여 더하기n = int(input())ans = 0for i in range(n): num = i #자기 자신 더하기 current_num = i while current_num > 0: num += current_num % 10 #자릿수마다 더하기 ..
요리 레시피 메모장 만들기 / 배열, 입출력, 형변환 import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String title = scanner.nextLine(); float star = scanner.nextFloat(); scanner.nextLine(); //버퍼에 남아있는 \n을 가져와 비움 float percentage_star = (star / 5.0f) * 100; String[] recipe = new String[10]; for (int i = 0; i  배열향후 미리 저..
JAVA의 형변환과 자료형타입 소수점을 표현하는 방식고정소수점 00.00 → 소수점의 길이나 바이트 수를 미리 제한해 놓은 것부동소수점 → 부호, 지수, 가수부의 영역만 정해 놓고 곱한 값을 저장해서 표현하는 방식 → 엄청 많은 수 표현 가능그렇기 때문에 float(4byte)여도 long(8byte)보다 더 큰 수를 표현할 수 있음char과 String의 차이char(byte)('')문자 뒤에 널문자(\0)가 없음, 1byte만 사용하기 때문기본형String("")문자 뒤에 널문자 존재, 어디가 끝인지 알아야 되기 때문참조형문자자료형 : 메모리는 이진수만 기록하므로 문자에 해당하는 유니코드값으로 매칭시켜 저장 기본형과 참조형 기본형 변수 : 원본값이 Stack 영역(정적영역 = 크기가 얼마인지 지정되어 있어야 함)으로 할당된 메모리..