Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
37834 C++|刘一阳 含k个3的数 C++ 运行超时 3000 MS 236 KB 203 2024-01-23 14:58:15

Tests(0/1):


#include<iostream> using namespace std; int n,k,cnt; int main() { cin>>n>>k; int m=n; while(m){ if(m%10==3){ cnt++; } } if(cnt==3) cout<<"YES"; else cout<<"NO"; return 0; }


测评信息: