| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 72681 | sh25_zhuwy | 乘方计算 | C++ | Accepted | 0 MS | 244 KB | 156 | 2025-11-02 13:47:51 |
#include<bits/stdc++.h> using namespace std; int main() { int a,n,s=1; cin>>a>>n; for(int i=0;i<n;i++) { s=s*a; } cout<<s; return 0; }