主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
我与代码的故事
天天原神启动不训练,考研还想上岸?
关注
发消息
文章
0
题解
105
发帖
0
笔记
12
Ta的粉丝
69
关注数
2
粉丝数
69
获赞数
117
阅读数
61312
反序数 (C++ 模拟)题解:
#include<bits/stdc++.h> using namespace std; int main() { for(int i = 1000; i <= 9999; i ++) { int t = i * 9; ...
P1454
2024年4月22日 00:15
回复 0
|
赞 1
|
浏览 591
01序列 (二进制枚举)题解:
经过分析,只需要枚举0到64的二进制数即可 #include<bits/stdc++.h> using namespace std; int res; //全局变量系统初始化为0 int main() { printf("%06d\n", ...
P1001
2024年4月21日 17:24
回复 0
|
赞 1
|
浏览 637
求1到n的和 (等差数列)题解:
#include<bits/stdc++.h> using namespace std; typedef long long LL; int n; LL ans; int main() { cin >> n; ans = n * (...
P1133
2024年4月21日 00:02
回复 0
|
赞 1
|
浏览 536
计算Sn (模拟,注意数据范围)题解:
#include<bits/stdc++.h> using namespace std; typedef long long LL; int x, n; LL ans; int main() { cin >> x >> n; ...
P1043
2024年4月20日 23:58
回复 0
|
赞 1
|
浏览 596
二元组整数 (搜索和C++ set)题解:
C++ set去重: #include<bits/stdc++.h> using namespace std; typedef pair<int, int> PII; const int N = 30; set<PII> res; i...
P1024
2024年4月20日 23:34
回复 0
|
赞 1
|
浏览 495
最长连续因子(贪心) 题解:
#include<bits/stdc++.h> using namespace std; int n; bool cheak(int x) { if(n % x == 0) return true; return false; ...
P1020
2024年4月20日 22:11
回复 0
|
赞 2
|
浏览 830
随机数 题解:
#include<bits/stdc++.h> using namespace std; int main() { cout << 210; return 0; }
P1009
2024年4月20日 20:28
回复 0
|
赞 1
|
浏览 516
单链表 题解:
#include<bits/stdc++.h> using namespace std; int a[5]; int main() { for(int i = 0; i < 5; i ++) cin >> a[i]; so...
P1015
2024年4月20日 19:33
回复 0
|
赞 1
|
浏览 499
击鼓传花(C++) 题解:
#include<bits/stdc++.h> using namespace std; const int N = 110; int n; bool st[N]; vector<int> res; int main() { ci...
P1018
2024年4月20日 17:03
回复 0
|
赞 1
|
浏览 608
复数 题解:
#include<bits/stdc++.h> using namespace std; float a, b, c, d; char ch; int main() { cin >> a >> b >> c >&g...
P1021
2024年4月20日 16:47
回复 0
|
赞 1
|
浏览 472
链表合并 题解:
#include<bits/stdc++.h> using namespace std; vector<int> A; int n, m; int main() { cin >> n; for(int i = 0; i &...
P1025
2024年4月20日 16:31
回复 0
|
赞 1
|
浏览 658
删除字符串 题解:
#include<bits/stdc++.h> using namespace std; int main() { string str; getline(cin, str); for(int i = 0; i < str.size();...
P1026
2024年4月20日 16:22
回复 0
|
赞 1
|
浏览 722
字母频率 (C++11 哈希表)题解:
#include<bits/stdc++.h> using namespace std; unordered_map<char, int> res; int main() { string str; getline(c...
P1019
2024年4月20日 16:09
回复 0
|
赞 1
|
浏览 470
字符分类 题解:
#include<bits/stdc++.h> using namespace std; int main() { string str; getline(cin, str); string num, c, oth...
P1016
2024年4月20日 16:06
回复 0
|
赞 1
|
浏览 480
幂次方(快速幂) 题解:
#include<bits/stdc++.h> using namespace std; int mod = 233333; int x, n; int qmi(int a, int b) { int res = 1 % mod...
P1017
2024年4月20日 15:58
回复 0
|
赞 1
|
浏览 496
删除最大最小数 题解:
题目叙述不清,需要特判 #include<bits/stdc++.h> using namespace std; const int N = 110; int a[N]; int n; int main() { cin >>...
P1022
2024年4月20日 15:55
回复 0
|
赞 1
|
浏览 421
删除字符串2 题解:
#include<bits/stdc++.h> using namespace std; int main() { string str; getline(cin, str); for(int i = 0; i < str.size();...
P1027
2024年4月20日 15:21
回复 0
|
赞 1
|
浏览 678
加密算法 题解:
#include<bits/stdc++.h> using namespace std; int main() { string str; getline(cin, str); for(int i = 0; i < str....
P1014
2024年4月20日 12:15
回复 0
|
赞 1
|
浏览 522
判断素数 题解:
#include<bits/stdc++.h> using namespace std; int n; bool cheak(int n) { if(n == 1) return false; for(int i = 2; i * i &l...
P1013
2024年4月20日 12:12
回复 0
|
赞 1
|
浏览 587
IP地址 题解:
#include<bits/stdc++.h> using namespace std; char num[1010]; bool cheak(string str) //判断合法性 { int cnt = 0, sum = 0; for(int i ...
P1023
2024年4月20日 00:29
回复 0
|
赞 1
|
浏览 561
1
...
3
4
5
6
本科学校:星穹铁道职业技术学院
目标学校:贵州大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!