joj1817

来源:互联网 发布:淘宝钻展如何使用 编辑:程序博客网 时间:2024/06/03 19:55

1817: Triangle


ResultTIME LimitMEMORY LimitRun TimesAC TimesJUDGE5s8192K2665747Standard

2nd JOJ Cup Online VContest Problem

Given three integers a, b and c(|a|, |b|, |c|<10000), determine if they can compose a valid triangle. If so, further determine which kind of the triangle it is.

Input Specification

The input consists of several lines, each of which contains three integers a, b and c.

Output Specification

For each group of a b and c, first print "Case K:", a space, and then one of the following four lines:

is not a valid triangle.
is a sharp triangle.
is a right triangle.
is a blunt triangle.

corresponding to your determinant, where K is the number of the test cases starting from 1.

Sample Input

3 4 5
3 3 3
1 2 3
3 4 6

Sample Output

Case 1: is a right triangle.
Case 2: is a sharp triangle.
Case 3: is not a valid triangle.
Case 4: is a blunt triangle.


This problem is used for contest: 104  167  181  185 


Submit / Problem List / Status / Discuss


原创粉丝点击