蓝桥杯2014年第五届真题-分糖果 摘要:解题思路:注意事项:参考代码:head = int(input())n = map(int,input().strip().split())n = list(n)num = 0jurge = len(…… 题解列表 2023年05月23日 1 点赞 0 评论 232 浏览 评分:0.0
2857: 加密的病历单 摘要:```python s = input() news = str() for c in s: if c.isupper(): news += c.lower() else: …… 题解列表 2023年05月23日 0 点赞 0 评论 268 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[101], str1[1000]; gets(str); …… 题解列表 2023年05月23日 0 点赞 0 评论 235 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct date{ int year; int month; int day;};int main(){ struct date …… 题解列表 2023年05月23日 0 点赞 0 评论 357 浏览 评分:0.0
1128:两行代码 摘要:解题思路:注意事项:参考代码:for x in sorted([int(x) for x in input().split()]): print(x, end=' ')…… 题解列表 2023年05月24日 0 点赞 0 评论 501 浏览 评分:0.0
1129:两行代码 摘要:解题思路:注意事项:参考代码:for x in sorted(map(int, input().split()), reverse=True): print(x, end=' …… 题解列表 2023年05月24日 0 点赞 0 评论 437 浏览 评分:0.0
Big Bang(一般解法) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>typedef struct Node{ char a[32];…… 题解列表 2023年05月24日 0 点赞 0 评论 204 浏览 评分:0.0
1072基础解法(Python) 摘要:解题思路:简单思路注意事项:了解divmod()函数的基础用法参考代码:import sysfor line in sys.stdin : bot = int(line) if bot =…… 题解列表 2023年05月24日 0 点赞 0 评论 217 浏览 评分:0.0
1118:TOM数超简单字符数组算法 摘要:解题思路:字符数组,记得-‘0’将字符转换成数字注意事项:参考代码:#include <iostream>#include <cstdio>#include <cstring>#include <al…… 题解列表 2023年05月25日 0 点赞 0 评论 268 浏览 评分:0.0
python水仙花数判断 摘要:解题思路:直接用到pow函数注意事项:注意符号参考代码:for i in range(100,999): a=int(i%10) b=int(i/10%10) c=int(i/100…… 题解列表 2023年05月26日 0 点赞 0 评论 220 浏览 评分:0.0