题解列表

筛选

2807:****(标题有敏感词)

摘要:解题思路:注意事项:参考代码:r,m,y = map(int,input().split())r = r * 0.01for i in range(0,y):    m += m * rprint(i……

感谢支持(谢谢)

摘要:解题思路:#include <bits/stdc++.h>using namespace std;int main(){    double xa,ya,xb,yb,xc,yc;    cin>>xa……

扫雷游戏地雷数计算

摘要:解题思路:把*号周围的数字都++注意事项:参考代码:#include<iostream>using namespace std;int main(){ //把*号周边的数++  int n,m; ch……

纯规律,不使用循环

摘要:解题思路:找到规律,不能被平分差的数的是 (x-2)%4 == 0, 然后判断 L,R中有多少个这样的数注意事项:参考代码:#include<bits/stdc++.h>#define ikun co……

3150: 蓝桥杯2023年第十四届省赛真题-冶炼金属

摘要:解题思路:其实这是一道数学题,根据给出的样例进行计算,比如75 3 这组,所求V在V*3>=75并且V*4<75,分别向上取整和向下取整就能获得这组的最大最小,一共n组,在这n组中向上取整的取最大值,……

邮票问题,C语言解决

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m=4,n=3; int ans,sum=0; for(int i=1;i<=m+n;i++){//总共……