5578: Square Inequality平方不等式(ABC199A)
内存限制:1024 MB
时间限制:2.000 S
评测方式:文本比较
命题人:
提交:0
解决:0
题目描述
Problem Statement:
You are given integers $A$, $B$, and $C$.
Determine whether $A^2 + B^2 < C^2$ holds.
You are given integers $A$, $B$, and $C$.
Determine whether $A^2 + B^2 < C^2$ holds.
给定整数A、B、C。
请判断是否满足 $A^2 + B^2 < C^2$ 。
输入
A B C
输出
If $A^2 + B^2 < C^2$ holds, print `Yes`; otherwise, print `No`.
如果满足 $A^2 + B^2 < C^2$ ,输出 Yes;否则输出 No。
样例输入 复制
2 2 4
样例输出 复制
Yes
提示
Constraints:
- $0 \le A \le 1000$
- $0 \le B \le 1000$
- $0 \le C \le 1000$
- $A$, $B$, and $C$ are integers.
- $0 \le A \le 1000$
- $0 \le B \le 1000$
- $0 \le C \le 1000$
- $A$, $B$, and $C$ are integers.