Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
109380 | 李明秦 | 满足条件的数II | C++ | Accepted | 1 MS | 276 KB | 569 | 2025-02-08 14:33:00 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int m,k,n=0,i=0; cin>>m>>k; if(m%19==0){ while(m!=0){ n=m%10; m=m/10; if(n==3){ i++; } } } if(i==k){ cout<<"YES"<<endl; }else{ cout<<"NO"<<endl; } return 0; }