| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 85110 | sh25_shengmy | 含k个3的数 | C++ | Accepted | 0 MS | 240 KB | 283 | 2026-03-06 15:02:03 |
#include<iostream> using namespace std; int main(){ int m,n,k; cin>>n>>k; m=n; int s=0; while(n){ if(n%10==3) s=s+1; n=n/10; } if(s==k&&m%19==0){ cout<<"YES"; return 0; } cout<<"NO"; return 0; }