爱吃鱼的大菠萝在debug
爱吃鱼的大菠萝在debug
全部文章
分类
归档
标签
去牛客网
登录
/
注册
爱吃鱼的大菠萝在debug的博客
全部文章
(共3篇)
题解 | 01序列
#include <bits/stdc++.h> using namespace std; int main() { int m; cin>>m; vector<int>arr(m); for(int i=0;i<m;i++...
2026-03-17
0
46
题解 | 查找组成一个偶数最接近的两个素数
#include <climits> #include <cmath> #include <iostream> #include<algorithm> #include<vector> #include<map> using n...
2026-03-12
0
50
题解 | 查找
#include <iostream> using namespace std; int main() { int n; cin >> n; int a[n]; for (int i = 0; i < n; i++) ...
2025-03-16
1
111