牛客568792594号
牛客568792594号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客568792594号的博客
全部文章
(共64篇)
题解 | #围圈报数#
#include <bits/stdc++.h> using namespace std; int main(){ int n, m; cin >> m; while (m --){ cin >> n; queue<int&...
2024-03-10
0
195
题解 | #最简真分数#
#include <bits/stdc++.h> using namespace std; int main(){ int n; while (cin >> n){ vector<int> a; for (int i=0; i<n; ...
2024-03-10
0
177
题解 | #数制转换#
#include <bits/stdc++.h> using namespace std; int main(){ string a_line, b_line; int a; int b; while (cin >> a >> a_line >...
2024-03-10
0
210
题解 | #进制转换#
#include <bits/stdc++.h> using namespace std; int main(){ string a_line, b_line; int a = 16; int b = 10; while (cin >> a_line){ ...
2024-03-10
0
174
题解 | #又一版 A+B#
#include <bits/stdc++.h> using namespace std; typedef long long LL; int main(){ LL a_num; LL b_num; int a = 10; int b; while (cin &g...
2024-03-10
0
179
题解 | #八进制#
#include <bits/stdc++.h> using namespace std; int main(){ string a_line; int a = 10; int b = 8; while (cin >> a_line){ vector<i...
2024-03-10
0
151
题解 | #进制转换#
#include <bits/stdc++.h> using namespace std; int main(){ string a_line; int a = 10; int b = 2; while (cin >> a_line){ vector<i...
2024-03-10
0
175
题解 | #二进制数#
#include <bits/stdc++.h> using namespace std; int main(){ string a_line; int a = 10; int b = 2; while (cin >> a_line){ vector<i...
2024-03-10
0
211
题解 | #浮点数加法#
#include <bits/stdc++.h> using namespace std; vector<int> add(vector<int> A, vector<int> B, int jin){ vector<int> C; ...
2024-03-09
1
220
题解 | #单词替换#
#include <bits/stdc++.h> using namespace std; typedef unsigned long long ULL; const int N = 110, P = 13331; int h[N], p[N], ha[N]; ULL get(i...
2024-03-09
0
195
首页
上一页
1
2
3
4
5
6
7
下一页
末页