题解
2025-10-28 11:56:39
发布于:浙江
1阅读
0回复
0点赞
判断有点难,搞清楚就行。
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
if(n%1000){
if(n%4000)cout<<"yes";
else cout<<"no";
}
else {
if(n%40)cout<<"yes";
else cout<<"no";
}
if(n0)cout<<"no";
return 0;
}
这里空空如也






有帮助,赞一个