Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
109805 | 黄一航 | 快速幂运算 | C++ | 通过 | 100 | 0 MS | 248 KB | 343 | 2023-11-11 10:55:59 |
#include <bits/stdc++.h> #define int long long using namespace std; int ksm(int a,int b) { int res = 1,t = a; while (b >= 1) { if (b & 1) res = (res * t); t = (t * t);b >>= 1; } return res; } signed main() { int a,b; cin >> a >> b; printf("%lld",ksm(a,b)); return 0; }