Run ID:114121
提交时间:2025-03-21 20:00:15
#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,g=0; cin>>m>>k; if(m%19!=0){ cout<<"NO"; return 0; } while(m!=0){ if(m%10==3){ g++; } m/=10; } if(g==k){ cout<<"YES"; } else { cout<<"NO"; } return 0; }