WA求助
查看原帖
WA求助
735252
ordoki楼主2023/1/17 12:20

评测记录 代码如下:

#include<iostream>
#include<cmath>
using namespace std;
int a,b,c;
int main(){
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	cin>>a>>b>>c;
	if(sqrt(a)+sqrt(b)<sqrt(c))
		cout<<"Yes";
	else
		cout<<"No";
    return 0;
}
2023/1/17 12:20
加载中...