3 条题解

  • 1
    @ 2025-4-2 20:59:34

    水题一枚

    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	int a,b,k;
    	cin>>a>>b>>k;
    	if(b*k==a){
    		cout<<"YES";
    	}else{
    		cout<<"NO";
    	}
    }
    

    信息

    ID
    3142
    时间
    1000ms
    内存
    256MiB
    难度
    1
    标签
    递交数
    111
    已通过
    44
    上传者