40分

B2078 含 k 个 3 的数

yangchenhao123 @ 2024-06-03 13:40:53

#include <bits/stdc++.h> 
using namespace std;
int main()
{
    long long m,k;
    cin>>m>>k;
    if(m/(k*3)==0){
        cout<<"YES";
    }else{
        cout<<"NO";
    }
    return 0;
} 

by xyy_xxyy @ 2024-06-03 14:09:14

你把题意理解错了,是数字里面有几个3。

如:433833 有4个3。

可以用循环来解决此问题。


|