#include <bits/stdc++.h>
int exgcd(int a, int &x, int b, int &y) {
if(a % b == 0) {x = 0; y = 1; return b;}
int m = exgcd(b, x, a % b, y);
int tx = x, ty = y;
x = ty;
y = tx - a / ...
English Article | Word Count | Duration | Accuracy | Speed | Backspace | Error | Slogan |
---|---|---|---|---|---|---|---|
《[c++] exgcd》 | 394字 | 1.7分钟 | 100% | 203 CPM | 50 次 | 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 |