Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150090 余建成 满足条件的数II C++ Wrong Answer 1 MS 276 KB 303 2026-03-22 11:03:52

Tests(0/3):


Code:

#include<iostream> using namespace std; int main(){ int m,k,i=0,x; cin>>m>>k; if(m%19==0){ while(m!=0){ x=m%10; m/=10; if(x==3)i++; } } if(i==k)cout<<"Yse"<<endl; else cout<<"No"<<endl; return 0; }


Run Info:

------Input------
43833 3
------Answer-----
YES
------Your output-----
Yse