Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
113118 陈家宝 快速幂运算 C++ 通过 100 0 MS 268 KB 187 2023-12-01 13:26:56

Tests(10/10):


#include <bits/stdc++.h> using namespace std; const int N=1e7+10; const int INF=0x3f3f3f3f; long long n,x,ans; int main() { cin>>n>>x; ans=pow(n,x); cout<<ans; return 0; }


测评信息: