题解 2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[504],b[504];int main(){ int n,sum=0…… 题解列表 2024年07月15日 0 点赞 0 评论 76 浏览 评分:0.0
奇数单增序列 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string.h> using namespace std; int main() { in…… 题解列表 2022年11月02日 0 点赞 0 评论 142 浏览 评分:0.0
2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e5;ll a[…… 题解列表 2024年07月15日 0 点赞 0 评论 75 浏览 评分:0.0
2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int tong[1005];int main(){ int n; c…… 题解列表 2023年10月21日 0 点赞 0 评论 47 浏览 评分:0.0
题解 2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[600];int main(){ int n=0; in…… 题解列表 2024年07月15日 0 点赞 0 评论 65 浏览 评分:0.0
题解 2917: 奇数单增序列 摘要:```cpp #include using namespace std; typedef long long ll; ll a[503],cnt; int main() { l…… 题解列表 2024年07月15日 0 点赞 0 评论 65 浏览 评分:0.0
2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e3;ll a…… 题解列表 2024年07月20日 0 点赞 0 评论 147 浏览 评分:0.0
题解 2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main(){ int b[501]={0},a[252]={0…… 题解列表 2022年11月03日 0 点赞 0 评论 111 浏览 评分:0.0
c++ STL解法,用上vector容器 摘要:#include<iostream> #include<vector> #include<algorithm> using namespace std; int main() { int…… 题解列表 2023年11月05日 0 点赞 0 评论 139 浏览 评分:8.0
2917:奇数单增序列 摘要:```cpp //这道题就输出有点坑,其他都还好 #include using namespace std; int n,b[1001],a[1001],k,s; int main() {…… 题解列表 2023年03月11日 0 点赞 0 评论 184 浏览 评分:9.9