Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
85412 | 王陈淼 | 满足条件的数II | C++ | Accepted | 1 MS | 272 KB | 277 | 2024-07-17 14:59:01 |
# include<iostream> using namespace std; int main(){ int n,k,j=0; cin >>n >>k; if(n%19==0){ while(n!=0){ if(n%10==3){ j++; } n=n/10; } if(j==k){ cout << "YES"; } }else{ cout<<"NO"; } return 0; }