일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- Data Engineer
- BigData
- apache iceberg
- java
- 여행
- 알고리즘
- Apache Kafka
- Trino
- 자바
- Linux
- 코테
- bigdata engineer
- HIVE
- Spark
- 삼성역맛집
- 코딩테스트
- pyspark
- Kafka
- Data Engineering
- 프로그래머스
- 용인맛집
- Iceberg
- 코딩
- 맛집
- hadoop
- 코엑스맛집
- bigdata engineering
- 백준
- 개발
- 영어
- Today
- Total
목록데이터 엔지니어링 정복 (429)
지구정복
//40 30 30인 경우 //40 + 30 //40 + 30 //40 * 2 + (30 + 30) // //50 40 40 30인 경우 //50 + 40 //50 + 40 //50 + 30 //50 * 3 + (40 + 40 + 30) // //60 60 40 40 30인 경우 //60 + 60 //60 + 40 //60 + 40 //60 + 30 //60 * 4 + ( 60 + 40 + 40 + 30 ) // //따라서 공식 //( max * (n-1) )+ ( 나머지 값들의 합) -자바 package greedy; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io..
-자바 package greedy; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.util.Arrays; import java.util.PriorityQueue; import java.util.StringTokenizer; class Lecture { int start; int end; Lecture(int start, int end) { this.start = start; this.end = end; } } public class classroom..
-자바 package greedy; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; import java.util.Comparator; import java.util.StringTokenizer; public class employee { public static void main(String[] args) throws NumberFormatException, IOException { BufferedReader br = new BufferedReader( new InputStreamReader(System.in) ); int T = Intege..
-java 정답 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int N = in.nextInt(); int K = in.nextInt(); int[] coin = new int[N]; for(int i = 0; i = 0; i--) { // 현재 동전의 가치가 K보다 작거나 같아야지 구성가능하다. if(coin[i]