_Daniel_ @ 2023-05-02 15:34:00
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
long long a,b,c;
cin>>a>>b;
c=pow(3,b);
if(a==c)
{
cout<<"YES";
}
else
{
cout<<"NO";
}
}
by Zhai0915 @ 2023-05-02 15:41:56
@Daniel 题目中的包含三是数位上的三,而不是因数3(你这个代码过不了样例)。