平方和与立方和 (C++代码)水 摘要:解题思路:又水了一题,我好像错过了愚人节彩蛋参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(0…… 题解列表 2019年04月02日 0 点赞 0 评论 634 浏览 评分:6.0
平方和与立方和 (C++代码) 摘要:解题思路:用两个双向队列存储数据注意事项:参考代码:#include <iostream>#include <deque>#include <algorithm>#include <numeric>#…… 题解列表 2018年01月14日 0 点赞 0 评论 1928 浏览 评分:5.4
最复杂的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>long f1(int a){ long y; y=(long)a*a; return y;}long f2(int …… 题解列表 2024年11月22日 0 点赞 0 评论 53 浏览 评分:4.0
平方和与立方和-题解(C语言代码) 摘要:#include int main() { int m,n,a,b,sum=0,sum1=0; while((scanf("%d %d",&m,&n))!=EOF) { sum=…… 题解列表 2019年06月20日 0 点赞 0 评论 353 浏览 评分:0.0
平方和与立方和 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,m,sum=0,sum1=0,s,k,a,b; while(scanf("%d %d",&n,&…… 题解列表 2019年04月25日 0 点赞 0 评论 547 浏览 评分:0.0
平方和与立方和 (C语言代码) 摘要:解题思路:暴力注意:int在oj一般就是32位,但有可能在别的机器是16位,所以最好改用long 我只是偷懒参考代码:#include <stdio.h> int sq(int x)//平方函数…… 题解列表 2017年12月14日 0 点赞 0 评论 1731 浏览 评分:0.0
平方和与立方和-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include int main() { …… 题解列表 2020年02月13日 0 点赞 0 评论 294 浏览 评分:0.0
平方和与立方和 (C语言代码) 摘要:参考代码:#include<stdio.h>#include<string.h>int main(){ int a,b,i,sum1,sum2; while(scanf("%d%d",&a,&b)!=…… 题解列表 2018年01月30日 2 点赞 0 评论 1839 浏览 评分:0.0
1211基础解法(Python) 摘要:注意事项:用import sys的情况下进行多行输入第一个测试点有问题,但是结果没有错误,所以这两种方式有什么区别呢?参考代码:while True: try: a,b = map…… 题解列表 2023年05月29日 0 点赞 0 评论 95 浏览 评分:0.0
平方和与立方和 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 平方和与立方和 { public static void main(String[] args) { // TODO Auto-g…… 题解列表 2018年05月11日 0 点赞 0 评论 643 浏览 评分:0.0