[백준] 4153번 - 직각삼각형 [Java][C++]
[백준] 4153번 - 직각삼각형 [Java][C++]
1. 문제 풀이
주어진 세 변의 길이를 통해 직각삼각형인지 여부를 판단하는 문제로 피타고라스 정리를 활용하면 해결할 수 있다.
2. 코드
1. 피타고라스 정리 [Java]
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
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
StringTokenizer st;
while (true) {
st = new StringTokenizer(br.readLine());
int[] sides = {Integer.parseInt(st.nextToken()), Integer.parseInt(st.nextToken()), Integer.parseInt(st.nextToken())};
Arrays.sort(sides);
if (sides[0] == 0) break;
if (sides[0] * sides[0] + sides[1] * sides[1] == sides[2] * sides[2]) {
bw.write("right\n");
} else {
bw.write("wrong\n");
}
}
bw.flush();
}
}
2. 피타고라스 정리 [C++]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
while (true) {
vector<int> v(3);
for (int& x : v) cin >> x;
sort(v.begin(), v.end());
if (v[0] == 0) break;
if (v[0] * v[0] + v[1] * v[1] == v[2] * v[2]) {
cout << "right\n";
} else {
cout << "wrong\n";
}
}
}
3. 풀이 정보
1. 피타고라스 정리 [Java]
| 언어 | 시간 | 메모리 | 코드 길이 |
|---|---|---|---|
| Java 11 | 100 ms | 14320 KB | 828 B |
2. 피타고라스 정리 [C++]
| 언어 | 시간 | 메모리 | 코드 길이 |
|---|---|---|---|
| C++ 17 | 0 ms | 2020 KB | 415 B |
This post is licensed under CC BY 4.0 by the author.