#45570: cpp ans


yp11351229@yphs.tp.edu.tw (709-39詹豫喬)

學校 : 臺北市私立延平高級中學
編號 : 276259
來源 : [203.72.178.2]
最後登入時間 :
2025-04-01 17:21:28
a453. TOI2010 第一題:一元二次方程式 -- 2010TOI研習營初選 | From: [203.72.178.2] | 發表日期 : 2025-03-18 17:24

#include <bits/stdc++.h>
using namespace std;
int main(){
    int M,a,b,c;
    cin>>M;
    for(int i=0;i<M;i++){
        cin>>a>>b>>c;
        if(b*b-4*a*c>=0&&(int)sqrt(b*b-4*a*c)*(int)sqrt(b*b-4*a*c)==b*b-4*a*c){
            cout<<"Yes"<<endl;
        }
        else{
            cout<<"No"<<endl;
        }
    }
    return 0;
}
 
ZeroJudge Forum