Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
136169 张咏灏 x的n次方 C++ Wrong Answer 1 MS 276 KB 167 2025-11-09 17:16:40

Tests(0/10):


Code:

#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; }


Run Info:

------Input------
10 7
------Answer-----
10000000
------Your output-----
0