1503————蓝桥杯算法提高VIP-前10名 摘要: import java.util.Scanner; import java.util.*; import java.util.Collections; impor…… 题解列表 2023年02月07日 0 点赞 0 评论 300 浏览 评分:0.0
绝对值排序(解决超出限制) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){/*输入数据有多组*/ int n; while (scanf("%d", &n)…… 题解列表 2023年02月07日 0 点赞 0 评论 249 浏览 评分:0.0
2806: 人口增长问题 摘要:解题思路:注意事项:参考代码:x,n = map(int,input().split())for i in range(0,n): x += x * 0.001 print('{:…… 题解列表 2023年02月07日 0 点赞 0 评论 420 浏览 评分:0.0
python身份证排序解法 摘要:n=int(input().strip())X=[input().strip() for _ in range(n)] #用split函数的话 会放在列表里面,这样排不了序 strip函数拆分字符串返…… 题解列表 2023年02月07日 0 点赞 0 评论 342 浏览 评分:0.0
问就是只会枚举 摘要:#include #define endl '\n' using namespace std; typedef long long i64; typedef int i32; typedef…… 题解列表 2023年02月07日 0 点赞 0 评论 415 浏览 评分:0.0
第一次题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]={0}; int i,j,x; for(i=0;i<9;i++){ scanf("%…… 题解列表 2023年02月07日 0 点赞 0 评论 255 浏览 评分:0.0
题解 1013: [编程入门]Sn的公式求和 摘要:参考代码:n = int(input()) i = 1sn = 0while i <= n : sn += int(str(2)*i) i += 1print(sn)…… 题解列表 2023年02月07日 0 点赞 0 评论 279 浏览 评分:0.0
题解 1014: [编程入门]阶乘求和 摘要:解题思路:注意事项:参考代码import math #导入模块def main(n): #定义函数 return math.factorial(n)n = int(input())sn = …… 题解列表 2023年02月07日 0 点赞 0 评论 252 浏览 评分:0.0
结构体简化排序 摘要:解题思路:用结构体方式储存字符串以及字符串的长度 可以更方便地进行排序注意事项:参考代码:typedef struct str{ char str[101]; int len;}st;int main…… 题解列表 2023年02月07日 0 点赞 0 评论 399 浏览 评分:0.0
2808: 买房子 摘要:解题思路:注意事项:参考代码:a = 200n,k = map(int,input().split())for i in range(1,22): if i > 20: print…… 题解列表 2023年02月07日 0 点赞 0 评论 470 浏览 评分:0.0