Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
3214 | 邓程允 | x的n次方 | C++ | Wrong Answer | 0 MS | 256 KB | 165 | 2024-04-20 10:51:11 |
# include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; for(int i=1;i<b;i++){ a*=a; } cout<<a; return 0; }
------Input------
2 10
------Answer-----
1024
------Your output-----
0