在考古的小鱼干很有气魄
在考古的小鱼干很有气魄
全部文章
分类
归档
标签
去牛客网
登录
/
注册
在考古的小鱼干很有气魄的博客
全部文章
(共81篇)
题解 | #对称平方数#
#include <bits/stdc++.h> using namespace std; bool ispalindrome(int x){ stack<int> s; queue<int> q; while(x){ s.push(x % 10); ...
2023-03-15
1
396
题解 | #邮票#
#include <bits/stdc++.h> using namespace std; int main(){ set<float> st; for(int i = 0; i <= 5; i++){ for(int j = 0; j <= 4; j+...
2023-03-15
3
287
题解 | #反序相等#
#include <bits/stdc++.h> using namespace std; string fun(int x){ string s = to_string(x); reverse(s.begin(),s.end()); return s; } int mai...
2023-03-15
0
327
题解 | #完数与盈数#
#include <bits/stdc++.h> using namespace std; int main(){ vector<int> wanshu,yingshu,tmp; for(int i = 2; i <= 60; i++){ for(int j...
2023-03-15
1
330
题解 | #加法等式#
#include <bits/stdc++.h> using namespace std; int main(){ int a,b,c; for(a = 0; a <= 5; a++){ for(b = 0; b <= 5-a; b++){ for(c = 0...
2023-03-15
0
286
题解 | #单词识别#
#include <iostream> #include <map> #include <set> #include <vector> using namespace std; int main(){ set<string> st; ...
2023-03-15
1
345
题解 | #分组统计#
#include <bits/stdc++.h> #define MAX 1000 using namespace std; int main(){ int m,n; int v[MAX],index[MAX]; set<int> s1; //去重排序用 set&l...
2023-03-14
2
360
题解 | #编排字符串#
#include <bits/stdc++.h> using namespace std; int main(){ vector<string> v; int m; string tmp; cin>>m; while(m--){ cin>&g...
2023-03-14
1
295
题解 | #日期累加#
#include <bits/stdc++.h> using namespace std; int a1[] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; bool isrun(int y){ if((y % 4 == 0 && y % 1...
2023-03-14
1
243
题解 | #日期类#
#include <bits/stdc++.h> using namespace std; int a1[] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; int a2[] = {0,31,29,31,30,31,30,31,31,30,31,3...
2023-03-14
1
359
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页