| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 136169 | 张咏灏 | x的n次方 | C++ | Wrong Answer | 1 MS | 276 KB | 167 | 2025-11-09 17:16:40 |
#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; for(int i=0;i<b-1;i++){ a=a*a; } cout<<a; return 0; }
------Input------
10 7
------Answer-----
10000000
------Your output-----
0