반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- boj
- 경제뉴스 요약
- 손에 잡히는 경제 요약
- 코딩테스트
- 상한가 이유
- 백준
- 알고리즘
- 주식 분석
- 주식 상한가
- 상한가
- 경제
- 손에 잡히는 경제
- 상한가 분석
- 자바
- 테마주
- 급등주
- Python
- 급등 이유
- 코테
- 손경제 요약
- 주식
- 프로그래머스
- Programmers
- 이진우의 손에 잡히는 경제
- 경제뉴스
- 파이썬
- 급등주 분석
- 이진우
- java
- 손경제
Archives
- Today
- Total
Completion over Perfection
백준 13866 - 팀 나누기 (JAVA) 본문
반응형
백준 13866 - 팀 나누기 (JAVA)
엄청 간단해 보이지만 은근 생각해야되는 문제였다.
포인트는 Math.min 함수를 쓰는 것!
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
import java.util.*;
public class Making_team {
static int a,b,c,d;
static int team[];
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
a = sc.nextInt();
b = sc.nextInt();
c = sc.nextInt();
d = sc.nextInt();
team = new int [4];
team[0] = a;
team[1] = b;
team[2] = c;
team[3] = d;
int sum = a+b+c+d; //41
int min = 10000;
for (int i=0; i<4; i++){
for(int j=i+1; j<4; j++){
int gap = 0;
int temp_team1 = 0;
int temp_team2 = 0;
temp_team1 = team[i] + team[j]; //11
temp_team2 = sum - temp_team1; //30
if (temp_team1<temp_team2) {
gap = temp_team2 - temp_team1; //19
}else {
gap = temp_team1 - temp_team2;
}
min = Math.min(min, gap);
}
}
System.out.print(min);
}
}
|
cs |
반응형
'앨고리듬 알고리즘' 카테고리의 다른 글
백준 9019 - DSLR (JAVA, 자바) (0) | 2020.11.14 |
---|---|
백준 2178 - 미로탐색 (JAVA 자바) (0) | 2020.11.11 |
백준 1260 - DFS와 BFS (JAVA) (0) | 2020.11.10 |
백준 1012 - 유기농배추 DFS (JAVA) (0) | 2020.11.06 |
백준 7576 - 토마토 BFS (JAVA) (0) | 2020.11.04 |
Comments