#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字 | 120.0分钟 | 99% | 51 CPM | 31 次 | 2 | 不及格,加强练习! |
The wrong word this time: _,_ | |||||||
Suggestion:
可能对按键不够熟悉,或者对输入法不够熟练所导致,不要急慢慢来,先打对把准确率提高,然后逐渐的加快速度,最后才能打准打快。
|
|||||||
Inspirational quotes: 别人放手,他仍然坚持;别人后退,他仍然前冲;每次跌倒,立刻站起来--这种人一定没有失败。 ——雨果 | |||||||
What do you think of this article? Give it a rating and let it serve as a guiding light for others |