Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
117068 顾文博 满足条件的数II C++ Accepted 1 MS 272 KB 532 2025-04-13 15:06:43

Tests(3/3):


Code:

#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,s=0; cin>>m>>k; if(m%19!=0){ cout<<"NO"; return 0; } for(m;m!=0;m/=10){ if(m%10==3){ s++; } } if(s==k){ cout<<"YES"; } else{ cout<<"NO"; } return 0; }