牛客672243729号
牛客672243729号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客672243729号的博客
全部文章
(共3篇)
就看你会不会map了 | 手机键盘 --本质弱智题
#include <stdio.h> #include <map> #include <string> using namespace std; int main() { map<char,int> position={ {'a',2}, {...
2026-03-18
1
7
看了下没有用dfs的 | Sum of Factorials
#include <stdio.h> #include <vector> using namespace std; long long getJiecheng(long long a) { //求a的阶乘 if (a == 0) { return 1...
2026-03-18
1
14
题解 | 约数的个数 - 弱智题
#include <stdio.h> #include <vector> using namespace std; int getYueshu(int n) { int counts = 0; for (int i = 1; i * i <= n; i...
2026-03-17
0
8