-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJ04019_LopTriangle1.java
60 lines (48 loc) · 1.5 KB
/
J04019_LopTriangle1.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import java.io.*;
import java.math.*;
import java.util.*;
class Point {
public float x, y;
public Point(float x, float y) {
this.x = x;
this.y = y;
}
public static Point nextPoint(Scanner sc) {
float x = sc.nextFloat();
float y = sc.nextFloat();
Point ans = new Point(x, y);
return ans;
}
}
class Triangle {
public float c1, c2, c3, cv;
public Triangle(Point p1, Point p2, Point p3) {
this.c1 = (float) Math.sqrt((p1.x - p2.x) * (p1.x - p2.x) + (p1.y - p2.y) * (p1.y - p2.y));
this.c2 = (float) Math.sqrt((p1.x - p3.x) * (p1.x - p3.x) + (p1.y - p3.y) * (p1.y - p3.y));
this.c3 = (float) Math.sqrt((p3.x - p2.x) * (p3.x - p2.x) + (p3.y - p2.y) * (p3.y - p2.y));
this.cv = this.c1 + this.c2 + this.c3;
}
public boolean valid() {
if (c1 + c2 > c3 && c2 + c3 > c1 && c1 + c3 > c2) {
return true;
}
return false;
}
public String getPerimeter() {
return String.format("%.3f", this.cv);
}
}
public class J04019_LopTriangle1 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
while (t-- > 0) {
Triangle a = new Triangle(Point.nextPoint(sc), Point.nextPoint(sc), Point.nextPoint(sc));
if (!a.valid()) {
System.out.println("INVALID");
} else {
System.out.println(a.getPerimeter());
}
}
}
}