| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 109382 | 李朋秦 | 满足条件的数II | C++ | Time Limit Exceeded | 1000 MS | 268 KB | 278 | 2025-02-08 14:34:11 |
#include<bits/stdc++.h> using namespace std; int main() { int m,k,n=0,i=0; cin>>m>>k; if(m%19==0){ while(m!=0){ n=m%10; n=m/10; if(n==3){ i++; } } }if(i==k){ cout<<"YES"; }else{ cout<<"NO"; } return 0; }