Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
85418 王珠潏 满足条件的数II C++ Accepted 1 MS 272 KB 377 2024-07-17 15:01:35

Tests(3/3):


Code:

#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; }