首页
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
兑换中心
登录
注册
上岸
孙某人
我是菠菜哥小号(二刷),第三是我大号
关注
发消息
文章
0
题解
67
发帖
0
笔记
2
Ta的粉丝
207
关注数
1
粉丝数
207
获赞数
177
阅读数
52829
斐波那契数列 题解:两种思路
1.直接 unsigned long long ,适合求位数小的 #include <iostream> #include <string.h> using namespace std; int main(){ unsigned long l...
P1111
2024年3月25日 15:38
回复 0
|
赞 6
|
浏览 793
围圈报数 题解:求大佬给看看,为什么超时,且只能输出一组数字
#include <iostream> #include <string.h> #include <math.h> #include <algorithm> using namespace std; /*typedef struct...
P1429
2024年3月22日 18:33
回复 3
|
赞 1
|
浏览 554
学生查询 题解:
#include <iostream> #include <string.h> #include <math.h> #include <algorithm> using namespace std; typedef struct ...
P1432
2024年3月22日 19:34
回复 0
|
赞 0
|
浏览 701
相隔天数 题解:这题咋没题解
#include <iostream> #include <string.h> #include <math.h> #include <algorithm> using namespace std; int main(){ in...
P1825
2024年3月21日 15:03
回复 0
|
赞 0
|
浏览 635
Special数 题解:减少循环次数
#include <iostream> #include <string.h> #include <math.h> #include <algorithm> using namespace std; int sqrt1(long...
P1560
2024年3月21日 13:19
回复 0
|
赞 3
|
浏览 736
递推数列 题解:怎么不告诉我是多组数据啊,好伤心啊
#include <iostream> #include <string.h> using namespace std; int main(){ int a0,a1,p,q,k; while(cin >> a0 >> a1 &g...
P1171
2024年3月19日 19:08
回复 0
|
赞 2
|
浏览 647
数组排序 题解:求大佬帮忙看看,一直过不去,不知道怎么错了
#include<iostream> #include <algorithm> #include <string.h> using namespace std; int main(){ int n,flag=0,c=0; char a[1...
P1798
2024年3月18日 19:23
回复 2
|
赞 4
|
浏览 848
最大序列和 题解:新手题解
编译器不支持 万能头文件,看了其他题解,直接把变量n放到定义数组里面报错 这里用动态定义 #include <iostream> #include <string.h> #include <math.h> #include<vec...
P1172
2024年2月16日 17:58
回复 4
|
赞 1
|
浏览 821
判断二叉树是否对称 题解:新手方法 易于理解
#include <iostream> #include<string.h> #include <math.h> using namespace std; int main(){ char a[1005]; for(int i=0;i&l...
P1551
2024年2月29日 12:00
回复 1
|
赞 14
|
浏览 1.2k
哈夫曼树 题解:新手简单易懂
#include <iostream> using namespace std; int min(int a[],int n){ int nn=0; long long int minn=999999999; for(int i=0;i<n;i++){ ...
P1382
2024年2月24日 10:33
回复 1
|
赞 8
|
浏览 1.2k
最小邮票数 题解:求大佬给测试数据,一直60%
#include <iostream> #include <string.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <...
P1164
2024年3月10日 15:41
回复 2
|
赞 0
|
浏览 768
整数拆分 题解:我感觉你有93.6%的可能性能看懂
#include <iostream> #include <string.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <...
P1158
2024年3月10日 14:45
回复 0
|
赞 13
|
浏览 824
约数的个数 题解:认真分析,最好用sqrt,还要考虑例如6*6这种情况
#include <iostream> #include <math.h> #include <algorithm> #include <string.h> using namespace std; int main(){ ...
P1152
2024年3月9日 17:38
回复 0
|
赞 2
|
浏览 602
01字符串 题解:19天!希望上机4道题能做出3道
#include <iostream> #include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> using namespa...
P1479
2024年3月8日 23:51
回复 0
|
赞 2
|
浏览 853
喝饮料 求助大佬,只有60%通过率
#include <iostream> #include <string.h> #include <math.h> #include<algorithm> using namespace std; int main(){ i...
P1478
2024年3月8日 17:30
回复 2
|
赞 2
|
浏览 714
堆排序 题解:还有21天上机,加油啊
#include <iostream> #include <algorithm> using namespace std; int main(){ int n=0; cin >>n; int a[50005]; int b=0; ...
P2012
2024年3月6日 12:48
回复 4
|
赞 4
|
浏览 994
字符值 题解:考试的时候也是用时间花费更少scanf?不要用cin ?
#include <iostream> #include <math.h> #include <algorithm> #include <string.h> using namespace std; /*int main(){ ...
P1870
2024年3月6日 17:23
回复 2
|
赞 10
|
浏览 945
消消乐 题解:冲刺最后21天复试,看到的都必然上岸
#include<iostream> #include<math.h> #include <algorithm> #include <string.h> using namespace std; int main(){ ...
P1869
2024年3月6日 13:24
回复 0
|
赞 0
|
浏览 605
怎么借书 题解:测试用例结果欺骗我感情
#include <iostream> #include <string.h> #include <math.h> #include <algorithm> using namespace std; int main(){ ...
P2004
2024年3月6日 13:04
回复 0
|
赞 0
|
浏览 792
这是第几天? 题解:求助大佬,为什么按注释掉的部分写只有66%
#include <iostream> using namespace std; int main(){ /*char a[20]; for(int i=0;i<20;i++) a[i]=0; cin >>a; int yea...
P1542
2024年3月6日 11:30
回复 5
|
赞 3
|
浏览 754
1
2
3
4
本科学校:河北科技师范学院
目标学校:贵州大学
N诺官方认证
研究生 - 贵州大学