蓝桥杯2020年第十一届省赛真题-单词分析(通俗易懂) 摘要:lst=list(input())lst_zi_dian_xu=sorted(lst)print(lst_zi_dian_xu)lst_ci_shu=sorted(lst_zi_dian_xu,key…… 题解列表 2023年04月05日 0 点赞 0 评论 236 浏览 评分:0.0
编程入门]结构体之时间设计 想了好久 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct time{ int year; int month; int day;};int…… 题解列表 2023年04月05日 0 点赞 0 评论 156 浏览 评分:0.0
1280: 找啊找啊找GF 摘要:解题思路 01背包的思路,先找到可以泡最多妹子的数量,然后再在最多妹子数量中找到时间最少得注意事项:参考代码:#include<bits/stdc++.h> using namespace std;…… 题解列表 2023年04月05日 0 点赞 0 评论 240 浏览 评分:0.0
入门编程题成绩评定 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int X; scanf("%d",&X); if(X <=100) { if…… 题解列表 2023年04月06日 0 点赞 0 评论 157 浏览 评分:0.0
3129: 信息学奥赛一本通T1352-奖金(拓扑排序) 摘要:解题思路:注意事项:参考代码:n,m = map(int,input().split()) # 构造图 graph = {i:[] for i in range(1,n+1)} for i in…… 题解列表 2023年04月06日 0 点赞 0 评论 247 浏览 评分:0.0
统计字母个数 摘要:解题思路:注意事项:参考代码:L = list(input())while '#'not in L: L.extend(input())for i in range(ord(&#…… 题解列表 2023年04月06日 0 点赞 0 评论 208 浏览 评分:0.0
超级楼梯——递归 摘要:解题思路:注意事项:参考代码:def pa(n): if n == 1 or n == 2: return n else: return pa(n-1)+pa(…… 题解列表 2023年04月06日 0 点赞 0 评论 299 浏览 评分:0.0
绝对值排序---抽象JAVA 摘要:解题思路:TreeSet去重,排序Comparator 绝对值排序注意事项:无参考代码:import java.util.*;public class Main { public static voi…… 题解列表 2023年04月06日 0 点赞 0 评论 210 浏览 评分:0.0
字符串问题——抽象JAVA 摘要:解题思路:StringBuilder反转参考代码:import java.util.*;public class Main { public static void main(String[] arg…… 题解列表 2023年04月06日 0 点赞 0 评论 502 浏览 评分:0.0
阶乘末尾的K位 摘要:解题思路:注意事项:参考代码:from math import*n,k = map(int,input().split())a = str(factorial(n))while a.endswith(…… 题解列表 2023年04月06日 0 点赞 0 评论 185 浏览 评分:0.0