编写题解 1098: 陶陶摘苹果 摘要:解题思路:注意事项:参考代码:a = list(map(int,input().split(" ")))b = int(input())b = b+30count = 0for i in range…… 题解列表 2023年02月21日 0 点赞 0 评论 277 浏览 评分:2.0
2817: 级数求和 摘要:注意事项:参考代码:Sn = n = 0 k = int(input()) while True: n = n + 1 Sn = Sn + 1/n if Sn > 题解列表 2023年02月21日 0 点赞 0 评论 376 浏览 评分:2.0
2869: 字符串最大跨距 摘要:解题思路:注意事项:参考代码:s,s1,s2 = input().strip().split(",") if s1 in s and s2 in s: a = s.index(s1) …… 题解列表 2023年02月26日 0 点赞 0 评论 315 浏览 评分:2.0
3030基础解法(Python) 摘要:解题思路:恰如title注意事项:理解库函数即可参考代码:import itertoolss = input()for data in itertools.permutations(s, len(s)…… 题解列表 2023年02月28日 0 点赞 0 评论 570 浏览 评分:2.0
我是彩币,算出来后才发现有答案,真拉 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){printf("1993"); return 0;}…… 题解列表 2023年03月02日 0 点赞 1 评论 193 浏览 评分:2.0
c语言题解c语言题解c语言题解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>#include<math.h>int main(){ …… 题解列表 2023年03月04日 0 点赞 0 评论 349 浏览 评分:2.0
2851: 合法C标识符 摘要:#include<stdio.h> #include<math.h> #include<string.h> # define N 100001 int main() { c…… 题解列表 2023年03月05日 0 点赞 0 评论 298 浏览 评分:2.0
计算输入数据的和与乘积 摘要:解题思路:注意事项:参考代码: #include<stdio.h> int main(){ int n, sum=0, a=1; scanf("%d", &n); …… 题解列表 2023年03月08日 0 点赞 0 评论 328 浏览 评分:2.0
LikeWater - 1000: [竞赛入门]简单的a+b(很难相信这道题的正确率居然只有51%!!) 摘要:#这道题的特点是不用写,直接点提交就行了,因为已经帮你写好了。 ```cpp #include using namespace std; int main() { int a,b;…… 题解列表 2023年03月12日 0 点赞 0 评论 455 浏览 评分:2.0
蓝桥杯2018年第九届真题-航班时间-暴力解法 摘要:解题思路:注意事项:参考代码:import ren=int(input())ls=[]while n!=0: a=list(map(str,input().split())) b=list…… 题解列表 2023年03月13日 0 点赞 0 评论 384 浏览 评分:2.0