题解 2270: 蓝桥杯2016年第七届真题-四平方和

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

[Sapphire]2270:四平方和(浅浅回归一下~练下手)(C语言)

摘要:四平方和 Sapphire2022/3/29解题思路:非常遗憾的是,我只会暴力解法,但暴力解法可以从4次遍历减少到3次遍历,这样可以避免时间超限。注意事项:1.这里减少遍历的方法是,因为四个元素的平方……

枚举思想解决

摘要:解题思路:暴力枚举注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,i,j,m,l; scanf("%d",&n);    in……

python-四平方和

摘要:解题思路:注意事项:参考代码:from math import sqrt         def f(n):       for i in range(int(sqrt(n))+1):   ……

暴力加适度优化

摘要:解题思路:    d和c从大数往小数循环注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main() { int ……

暴力枚举!!!

摘要:```cpp #include using namespace std; int n; int main(){ cin >> n; for(int i = 0;……