| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 109380 | Block Xuan | 快速幂运算 | C++ | Accepted | 100 | 0 MS | 260 KB | 169 | 2023-11-08 13:39:49 |
#include<bits/stdc++.h> #define int long long using namespace std; signed main(){ int a,b; cin>>a>>b; cout<<(long long)(pow(a,b)); return 0; }