在做毕设的鲸鱼很刻苦
在做毕设的鲸鱼很刻苦
全部文章
分类
归档
标签
去牛客网
登录
/
注册
在做毕设的鲸鱼很刻苦的博客
全部文章
(共24篇)
题解 | #谁是你的潜在朋友#
#include <iostream> #include <map> using namespace std; int main() { int n,m; cin>>n>>m; map<int,int>reader...
2024-03-20
0
185
题解 | #打印日期#
#include <cstdio> int main() { int mdays[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int m, n; while (scanf("%d%d", &...
2023-03-11
1
262
题解 | #日期累加#
#include <cstdio> int main() { int m; int mdays[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int year, month, day, aft...
2023-03-11
2
276
题解 | #日期类#
#include <cstdio> int main() { int n; int mdays[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; while (scanf("%d", &n) !=...
2023-03-11
1
328
题解 | #寻找大富翁#
#include <iostream> #include <algorithm> using namespace std; int wealth[100000 + 1]; bool cmp(int a, int b) { return a > b; } int...
2023-03-06
1
253
题解 | #查找第K小数#
#include <iostream> #include <queue> using namespace std; int main(){ int n,k; while (cin>>n){ priority_queue<in...
2023-03-05
3
327
题解 | #成绩排序#
#include <algorithm> #include <iostream> using namespace std; struct Student { string name; int age; int grade; }; Student st...
2023-03-05
1
291
题解 | #最大的两个数#
牛客网有个很无语的地方就是明明有多组测试用例,但如果用while(true)无限循环输出的结果是错的,只好把它删掉。 #include <iostream> #include <cstdio> int main(){ int arr[5][6] = {0};/...
2023-03-05
1
338
题解 | #Problem A#
典型的打表题,如果每个输入用例都计算一次肯定超时[秃头]。 //先把1到10^5所有的完数输出 //#include <vector> //#include <iostream> // //using namespace std; //bool perfectNumber(i...
2023-03-05
2
411
题解 | #众数#
#include <iostream> #include <algorithm> using namespace std; int main(){ int num; int arr[11]={0}; int maxnum = -1; ...
2023-03-05
2
309
首页
上一页
1
2
3
下一页
末页