#include <iostream>
#define ll long long
using namespace std;
ll Quick_pow(ll a,ll b){
ll ans=1;
while(b){
if((b&1) == 1){
ans *= a;
}
a *= a;
b >>= 1;
}
return ans;
}
int main(){
ll ...
English Article | Word Count | Duration | Accuracy | Speed | Backspace | Error | Slogan |
---|---|---|---|---|---|---|---|
《c++快速幂》 | 270字 | 1.0分钟 | 100% | 71 CPM | 8 次 | 0 | 不及格,加强练习! |
Inspirational quotes: 我想说,实际我不像你们想象的那样很成功,尽管你发现我很自信,但实际上我还是一个普通人。 ——王石 | |||||||
What do you think of this article? Give it a rating and let it serve as a guiding light for others |