1464: 蓝桥杯基础练习VIP-分解质因数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int asd(int n) //判断素数 { int k =(int) (sqrt(n)…… 题解列表 2023年01月02日 0 点赞 0 评论 324 浏览 评分:7.3
1099: 校门外的树 摘要:解题思路:注意事项:参考代码:L,M=map(int,input().split(" "))T=[1 for i in range(L+1)]for i in range(M): x=input(…… 题解列表 2023年01月05日 1 点赞 0 评论 303 浏览 评分:7.3
C语言—— Vigenère密码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int c[1001]={0},d[101]={0},i,j,k; …… 题解列表 2023年01月05日 0 点赞 0 评论 582 浏览 评分:7.3
2913: 整数去重 摘要:```cpp #include using namespace std; int main() { int n,a[20001],j=1; cin>>n; for(int i=1;…… 题解列表 2023年01月05日 0 点赞 3 评论 438 浏览 评分:7.3
去 N M 的雇佣兵(题目都看不懂) 摘要:解题思路: 这个题目真的很烦,不看个一两秒钟很难理解首先,我们输入的是M,N,X,分别代表 最大体力,初始战斗力,初始能量元素第二,要知道题目要我们求的是最大战斗力,还有不要理解为他有多…… 题解列表 2023年01月08日 1 点赞 0 评论 918 浏览 评分:7.3
3006: 适合晨练 摘要:```cpp #include using namespace std; int main() { int t; cin>>t; cout…… 题解列表 2023年01月08日 0 点赞 1 评论 413 浏览 评分:7.3
2875: 回文子串 摘要:```cpp #include #include using namespace std; bool dp[500][500]; int main() { char s[500]…… 题解列表 2023年01月10日 0 点赞 0 评论 416 浏览 评分:7.3
2915: 接水问题 摘要:```cpp #include using namespace std; int main() { int n,m,w[10000],x[10000],s=1,max=0; …… 题解列表 2023年01月10日 0 点赞 1 评论 344 浏览 评分:7.3
2768: 与圆相关的计算 摘要:我觉得很奇怪,输入输出都必须用scanf和printf,如果写成了cin和cout流,就会“答案错误83”。 ```cpp #include using namespace std; int …… 题解列表 2023年01月11日 0 点赞 3 评论 920 浏览 评分:7.3
2773: 计算线段长度 摘要:```cpp #include #include #include using namespace std; int main() { double Xa,Ya,Xb,Yb; …… 题解列表 2023年01月11日 0 点赞 0 评论 443 浏览 评分:7.3