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 |
Tags
- dynamic programming
- string
- 코테
- bit manipulation
- Math
- Class
- Tree
- Counting
- Binary Tree
- java
- 자바
- greedy
- database
- 코딩테스트
- sorting
- two pointers
- hash table
- SQL
- array
- Data Structure
- Number Theory
- implement
- 파이썬
- 구현
- Binary Search
- Matrix
- Stack
- simulation
- geometry
- Method
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 14215. 세 막대 본문
- 입력: 첫째 줄에 a, b, c (1 ≤ a, b, c ≤ 100)가 주어진다.
- 출력: 첫째 줄에 아래의 조건을 만족하면서 만들 수 있는 가장 큰 삼각형의 둘레를 출력한다.
1) 막대의 길이는 마음대로 줄일 수 있다.
2) 각 막대의 길이는 양의 정수이다
3) 세 막대를 이용해서 넓이가 양수인 삼각형을 만들 수 있어야 한다.
import java.util.*;
import java.io.*;
class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer token = new StringTokenizer(br.readLine());
int[] len = {Integer.valueOf(token.nextToken()), Integer.valueOf(token.nextToken()), Integer.valueOf(token.nextToken())};
Arrays.sort(len);
while(!(len[1]-len[0]<len[2] && len[2]<len[1]+len[0])){
len[2]--;
}
System.out.print(len[2]+len[1]+len[0]);
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 24723. 녹색거탑 (0) | 2023.03.31 |
---|---|
[LeetCode/Easy] 819. Most Common Word (0) | 2023.03.31 |
[백준 온라인 저지] 5073. 삼각형과 세 변 (0) | 2023.03.29 |
[백준 온라인 저지] 10101. 삼각형 외우기 (0) | 2023.03.29 |
[백준 온라인 저지] 9063. 대지 (0) | 2023.03.29 |