Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
114122 | 江梵睿 | 满足条件的数II | C++ | Time Limit Exceeded | 1000 MS | 260 KB | 528 | 2025-03-21 20:01:30 |
#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,d=0,i; cin>>m>>k; if(m%19!=0){ cout<<"NO"; return 0; } while(m!=0){ if(m%10==3){ d++; } } if(d==k){ cout<<"YES"; } else{ cout<<"NO"; } return 0; }