求平方差个数(超时可参考) 摘要:`解题方法:多列几组关于平方的等式,然后观察规律 ` `例如: 1=1²-0² 5=3²-2² 2 6 3=2²-1² 7=…… 题解列表 2023年11月30日 0 点赞 0 评论 239 浏览 评分:2.0
去掉余数为2的数即可 摘要:关键在于,如何判断某个数是不是平方差 ```c++ #include using namespace std; bool function(int x) { bool res =…… 题解列表 2024年03月03日 0 点赞 0 评论 124 浏览 评分:0.0
3142: 蓝桥杯2023年第十四届省赛真题-平方差 摘要:解题思路:此题可以用三个for循环直接求解(即蛮力法),但是求出来之后会显示时间超时,看了一下别人的方法,可以直接用公式求解,即:F(x)=x/4 + (x+1)/2此公式求出来是小于x的满足条件的数…… 题解列表 2024年03月25日 0 点赞 0 评论 202 浏览 评分:0.0
求出1到50不符合的值易得,n=4*i+2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ long a,b,i; scanf("%d%d",&a,&b); int sum=b-a+1; for(i=a…… 题解列表 2024年04月07日 0 点赞 0 评论 84 浏览 评分:0.0
题目 3150: 蓝桥杯2023年第十四届省赛真题-冶炼金属 摘要: #include <bits/stdc++.h> #define int long long #define debuga(v, i) cout << #v << "[" << i << "]…… 题解列表 2024年11月20日 0 点赞 0 评论 76 浏览 评分:0.0
3142: 蓝桥杯2023年第十四届省赛真题-平方差(C++) 摘要:**当所给数的范围极大时,不能盲目循环,尝试找规律破解 有平方差的数要么是奇数,要么是4的倍数** ```cpp #include using namespace std; int F(…… 题解列表 2024年03月20日 0 点赞 0 评论 190 浏览 评分:0.0