题解 1211: 平方和与立方和

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

筛选

平方和与立方和 (C++代码)水

摘要:解题思路:又水了一题,我好像错过了愚人节彩蛋参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(0……

平方和与立方和 (C++代码)

摘要:解题思路:用两个双向队列存储数据注意事项:参考代码:#include <iostream>#include <deque>#include <algorithm>#include <numeric>#……

最复杂的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>long f1(int a){    long y;    y=(long)a*a;    return y;}long f2(int ……

1211: 平方和与立方和

摘要:解题思路:注意事项:参考代码:while True:     try:         A,B=map(int,input().split())         pin,li=0,0     ……

平方和与立方和 (Java代码)

摘要:解题思路:注意事项:参考代码:public class 平方和与立方和 { public static void main(String[] args) { // TODO Auto-g……