Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
85424 | 叶城俊 | 满足条件的数II | C++ | Accepted | 1 MS | 272 KB | 349 | 2024-07-17 15:08:30 |
# 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"; } } else{ cout<<"NO"; } return 0; }