题解列表

筛选

蓝桥杯-回形取数【最容易理解、最笨的方法】

摘要:解题思路:设置了h_u,h_d,v_l,v_r四个参数,分别代表水平上边,水平下边,垂直左边,垂直右边当遍历垂直左边的时候,起始位置为h_u,结束位置为n-h_d当遍历水平下边的时候,起始位置为v_l……

单词的长度

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){  strings;……

2826: 雇佣兵

摘要:参考代码:m, n, x = map(int, input().split())a =&am……

~~求亲和数~~

摘要:#includeintmain(){intm;scanf("%d",&m);while(m--)//循环次数{inta,b;scanf("%d%d",&……

2830: 数字统计

摘要:参考代码:L, R = map(int, input().split())s = 0for&……

2831: 画矩形

摘要:参考代码:high, wide, s, flag = map(str, input().sp……

python 2833: 金币

摘要:参考代码:n = int(input())s = 0money = 0flag&nb……

主体C语言的简单链表

摘要:解题思路:封装函数调用注意事项:参考代码:////CreatedbyFreedomon2024/3/19.//#include<iostream>#include<cstdio&gt……