| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76460 | sh25_wanghy | 乘方计算 | C++ | Accepted | 0 MS | 244 KB | 236 | 2025-12-19 15:06:30 |
#include <iostream> using namespace std; int main() { int a, n; cin >> a >> n; int result = 1; for (int i = 0; i < n; ++i) { result *= a; } cout << result << endl; return 0; }