哈机米_那没鲁多
哈机米_那没鲁多
全部文章
分类
归档
标签
去牛客网
登录
/
注册
哈机米_那没鲁多的博客
全部文章
(共3篇)
题解 | GCPC总决赛
#include<iostream> using namespace std; const int N = 15; int n; int da[N], yx[N]; bool dy[N]; int cun = 0; int v = 0; int p = 0; int f = 0; voi...
2025-11-11
0
9
题解 | 简单密码
#include <iostream> #include<string> using namespace std; /*a='97',A='65',0='48'*/ int s2i(char a){ int cun; if(a=='a'||a=='b'...
2025-03-19
0
68
题解 | 密码截取
#include <iostream> #include<string> /*因为只有2500个所以可以去模拟*/ using namespace std; bool check(int i,int j,string a){ int cun=i+j; for(...
2025-03-17
0
71