1622 - 小明的三角形
Time Limit : 1 Second
Memory Limit : 128 MB
Submission: 674
Solved: 191
- Description
- 小明是一个喜欢思考的少年,他想考考你,给你三个点的坐标(X1,Y1)、(X2,Y2)、(X3,Y3),问这三点能否构成三角形(非退化)。
- Input
- 总共有T(T<=2000)组测试数据,在第一行中给出。接下来有T个模块,每个模块有六个整数X1,Y1,X2,Y2,X3,Y3(绝对值不超过1000)。
- Output
- 输出结果共有T行,每行输出Yes(表示能构成)或No(表示不能构成)。
- sample input
-
2 0 0 1 1 0 1 0 0 1 1 2 2
- sample output
-
Yes No
- hint
- source