本地输入输出没问题,一交就WA
#include <bits/stdc++.h> using namespace std; double n, p; int main() { while (cin >> n >> p) cout << pow(p, 1 / n) << endl; return 0; }