#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字 | 3.0分钟 | 100% | 77 CPM | 27 次 | 0 | 不及格,加强练习! |
Suggestion:
可能对按键不够熟悉,或者对输入法不够熟练所导致,不要急慢慢来,先打对把准确率提高,然后逐渐的加快速度,最后才能打准打快。
|
|||||||
Inspirational quotes: 为了自己想过的生活,勇于放弃一些东西,这个世界没有公正之处,你也永远得不到两全之计,若要自由,就得牺牲安全,若要闲散,就不能获得别人评价中的成就,若要愉悦,就无须计较身边的人给予的态度,若要前行,就得离开你现在停留的地方。 ——安妮宝贝 | |||||||
What do you think of this article? Give it a rating and let it serve as a guiding light for others |