| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 70399 | sh25_wangtaojie | 乘方计算 | C++ | Accepted | 0 MS | 236 KB | 240 | 2025-10-17 15:33:32 |
#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; }