千早爱因斯坦
千早爱因斯坦
全部文章
分类
归档
标签
去牛客网
登录
/
注册
千早爱因斯坦的博客
全部文章
(共4篇)
题解 | 最大的差
#include <bits/stdc++.h> using namespace std; long long n ,a_max, a_min,i; int main () { cin >> n ; int* a= new int[n]; for (i...
2025-09-12
1
19
题解 | 素数判断
#include <bits/stdc++.h> using namespace std; long long t ,n; int main () { cin >>t; while (t>0) { bool a = true; ...
2025-09-11
0
22
题解 | 多组数据a+b III
#include<bits/stdc++.h> using namespace std; int a,b; int main () { cin >> a >> b; while (a !=0 || b !=0) { cout...
2025-09-11
0
15
题解 | 绕距
#include<bits/stdc++.h> #include <iomanip> using namespace std; struct point_start { double x,y; }; struct point_end { double x,y;...
2025-09-10
0
13