帅的一天被人砍三回
帅的一天被人砍三回
全部文章
分类
归档
标签
去牛客网
登录
/
注册
帅的一天被人砍三回的博客
全部文章
(共37篇)
题解 | 字母统计
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <vector> #include <string> #include <algorithm> using namespace st...
2025-03-19
0
43
题解 | 找最小数
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <algorithm> #include <vector> using namespace std; struct xy1{ int x...
2025-03-18
0
54
题解 | 找x
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <algorithm> #include <vector> using namespace std; int main() { int n,x...
2025-03-18
0
54
题解 | 特殊排序
#include <stdio.h> #include <vector> #include <algorithm> using namespace std; int main(){ int N; scanf("%d",&N); v...
2025-03-18
0
37
题解 | 剩下的树
#include <stdio.h> #include <vector> using namespace std; int main(){ vector<int> tree; int l,m; int low,high; scanf...
2025-03-17
0
43
题解 | 完数VS盈数
#include <stdio.h> #include <vector> using namespace std; int main(){ vector<int> wan; vector<int> ying; for(int i...
2025-03-17
0
37
题解 | 日期差值
#include <stdio.h> using namespace std; int Nextday(int year){ int year1=year/10000; int month=(year/100)%100; int day=year%100; ...
2025-03-17
0
35
题解 | 日期累加
#include <stdio.h> void Nextday(int &year,int &month,int &day){ int arr[]{0,31,28,31,30,31,30,31,31,30,31,30,31}; bool isLea...
2025-03-17
0
63
题解 | 打印日期
#include <stdio.h> using namespace std; void Nextday(int year,int &month,int &day){ int arr[]{0,31,28,31,30,31,30,31,31,30,31,30,31}...
2025-03-17
0
73
题解 | 今年的第几天?
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> using namespace std; void Nextday(int& year, int& month1, int& day1) { int ar...
2025-03-17
0
47
首页
上一页
1
2
3
4
下一页
末页