简单暴力
2025-07-26 21:11:25
发布于:河北
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
long long x,y;
cin >> x >> y;
if(y % 2 == 0){
if(x * 2 <= y && x * 4 >= y){
cout << "Yes";
}else{
cout << "No";
}
}else{
cout << "No";
}
return 0;
}
这里空空如也
有帮助,赞一个