3081: 围成面积 dfs 摘要:解题思路:     从四条边开始搜索就OK了注意事项:参考代码:#include"bits/stdc…… 题解列表 2024年11月30日 0 点赞 0 评论 41 浏览 评分:0.0
二级C语言-成绩归类 摘要:参考代码:#include<stdio.h>intmain(){intn;inta,b,c;a=b=c=0;scanf("%d",&n);while(n!=0)…… 题解列表 2024年11月30日 0 点赞 0 评论 48 浏览 评分:0.0
[编程入门]自定义函数处理最大公约数与最小公倍数 C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){inta,b;intt,j;scanf("%d%d",&a,&b);…… 题解列表 2024年11月30日 0 点赞 0 评论 56 浏览 评分:0.0
三行秒杀大象喝水 摘要:解题思路:map函数接收输入注意事项:至少喝几桶水用向上取整参考代码:importmathh,r=map(int,input().split())print(math.ceil(20000/(h*ma…… 题解列表 2024年11月30日 0 点赞 0 评论 20 浏览 评分:0.0
瞎七八解释的挺清楚的了 摘要:解题思路:1.&nbsp;我们需要每次消耗多少能量才能达到体力最大值?每次消耗m/n个能量就会让体力达到最大值,体力最大值恒定不变为5;但是由于我们每次消耗能量至少一个,所以实际上我们要让体力…… 题解列表 2024年11月30日 0 点赞 0 评论 21 浏览 评分:0.0
不废话直接秒 摘要:解题思路:floor函数向下取整注意事项:参考代码:importmathn,x,y=map(int,input().split())print(math.floor(n-1/x*y))…… 题解列表 2024年11月30日 0 点赞 0 评论 19 浏览 评分:0.0
输入判定有坑,需要判断4个数据是否在一行 摘要:解题思路:注意事项:参考代码:importmathnum=list(map(float,input().split()))iflen(num)==4:&nbsp;&nbsp;print…… 题解列表 2024年11月30日 0 点赞 0 评论 29 浏览 评分:0.0
注意q和p不能放在整数型里 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){&nbsp;&nbsp;inti,n;&nbsp;&nbsp;doubl…… 题解列表 2024年11月30日 0 点赞 0 评论 20 浏览 评分:0.0
海伦公式秒杀 摘要:解题思路:注意事项:参考代码:importmathnum=list(map(float,input().split()))a=math.sqrt((num[3]-num[1])**2+(num[2]-…… 题解列表 2024年11月30日 0 点赞 0 评论 21 浏览 评分:0.0
两行直接秒 摘要:解题思路:map输入三数print输出首项+d*(n-1)注意事项:参考代码:a1,a2,n=map(int,input().split())print(a1+(a2-a1)*(n-1))…… 题解列表 2024年11月30日 0 点赞 0 评论 11 浏览 评分:0.0