立志实干
立志实干
全部文章
分类
无链接题解(1)
题解(49)
归档
标签
去牛客网
登录
/
注册
立志实干的博客
全部文章
(共12篇)
题解 | #百鸡问题#
#include <iostream> #include <cstdio> using namespace std; int main(){ int n; while(scanf("%d",&n)!=EOF){ int x,y,z...
习题
王道机试
E
第二章
2021-06-01
9
560
题解 | #与7无关的数#
#include <iostream> #include <cstdio> using namespace std; int main(){ int n; while(scanf("%d",&n)!=EOF){ int sum=0;...
习题
王道机试
E
第二章
2021-05-31
0
479
题解 | #反序数#
#include <iostream> #include <cstdio> using namespace std; int main(){ int n; for(int a=1;a<10;++a){ for(int b=0;b<...
王道机试
E
例题
第二章
2021-05-09
0
513
题解 | #abc#
#include <iostream> #include <cstdio> using namespace std; int main(){ for(int a=1;a<5;++a){ for(int b=1;b<5;++b){ ...
王道机试
E
例题
第二章
2021-05-09
1
492
题解 | #xxx定律#
#include <iostream> #include <cstdio> using namespace std; int main() { int n; int k=0; while(scanf("%d",&n)!=EOF) {...
王道机试
E
例题
第二章
2021-05-08
0
447
题解 | #abc#(烦)
#include <iostream> #include <cstdio> using namespace std; int m1[13]={0,31,29,31,30,31,30,31,31,30,31,30,31}; int m2[13]={0,31,28,31,30...
王道机试
E
例题
第二章
2021-05-08
0
504
二进制数2021.04.05
#include <iostream> #include <cstdio> #include <stack> using namespace std; stack<int> mystack; int main(){ int n; ...
王道机试
E
例题
第六章
2021-04-05
0
563
鸡兔同笼(例题7.1)
#include <iostream> #include <cstdio> using namespace std; int main(){ int n; int m,t;//m最少,t最多 while(scanf("%d",&n)!=EO...
第七章
王道机试
E
例题
2021-03-06
0
514
1978:扩号匹配问题(做法1:闭门造车,做法2:作者代码)
做法1:闭门造车 #include <iostream> #include <cstdio> #include <string> #include <stack> using namespace std; const int MAXSIZE=100...
第五章
王道机试
E
例题
2021-03-06
0
593
Zero-complexity Transposition(上海交通大学复试上机题)
#include <iostream> #include <cstdio> #include <stack> using namespace std; stack<long long> Num; int main(){ int n; ...
第五章
王道机试
E
2021-03-06
0
714
首页
上一页
1
2
下一页
末页