#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.9分钟 | 95% | 56 CPM | 19 次 | 6 | 不及格,加强练习! |
The wrong word this time: l,l,_,{,{, | |||||||
Inspirational quotes: 去国十年老 少年心。 ——黄庭坚 | |||||||
What do you think of this article? Give it a rating and let it serve as a guiding light for others |