#include <bits/stdc++.h> using namespace std; int main(){ int n,m,c=0; cin>>n>>m; for(int i=1;pow(i,m)<n;i++){ c++; } cout<<c; }
一个WA 补充点TLE