Keven·
Keven·
全部文章
分类
2018 hdu 多校赛(13)
2019 hdu 多校赛(10)
2019 Winter Camp(2)
2019 牛客多校赛(17)
2020 Winter Camp(1)
codeforces(26)
C语言小游戏(3)
EOJ(1)
hdu(17)
ICPC、CCPC比赛(3)
PAT 乙级题 解题报告(29)
PAT 甲级题(1)
PAT数据结构与算法题目集(中文)(7)
POJ(12)
PTA 团体设计天梯赛(15)
UVA(5)
ZOJ(3)
二叉树(4)
其他(16)
广度,深度优先搜索(4)
数论(3)
未归档(167)
概率&期望(2)
牛客网(54)
线段树(2)
蓝桥杯(22)
计蒜客(17)
题解(4)
归档
标签
去牛客网
登录
/
注册
Keven
Ask yourself, do you really work hard?
全部文章
(共561篇)
小白成长记之PTA乙级题 1051
PTA乙级题 1051. 复数乘法 (15) 【题目链接】 当a和b在一定范围时,取0。 #include<stdio.h> #include<math.h> int main() { double r1,r2,p1,p2,a,b; scanf(&q...
2018-02-09
0
518
小白成长记之PTA乙级题 1050
PTA乙级题 1050. 螺旋矩阵(25) 【题目链接】 感觉很难,改了好久,一直错两个点,直接上大佬的C++代码。 #include <vector> #include <cstdio> #include <algorithm> using names...
2018-02-08
0
489
小白成长记之PTA乙级题 1049
PTA乙级题 1049. 数列的片段和(20) 【题目链接】 遍历的话超时,所以要用到数学,在纸上多写几遍。 #include<stdio.h> int main() { int n; scanf("%d",&n); dou...
2018-02-08
0
481
小白成长记之PTA乙级题 1048
PTA乙级题 1048. 数字加密(20) 【题目链接】 比较简单吧。 #include<stdio.h> #include<string.h> int main() { char a[100]={0},b[100]={0}; int c[100]=...
2018-02-08
0
495
小白成长记之PTA乙级题 1047
PTA乙级题 1047. 编程团体赛(20) 【题目链接】 #include<stdio.h> int main() { int n,i,max=0,x,y,s=0; scanf("%d",&n); int a[10001]={...
2018-02-08
0
437
小白成长记之PTA乙级题 1046
PTA乙级题 1046. 划拳(15) 【题目链接】 大水题 #include<stdio.h> int main() { int i,n,x=0,y=0; scanf("%d",&n); int a[n],b[n],c[n]...
2018-02-08
0
458
小白成长记之PTA乙级题 1045
PTA乙级题 1045. 快速排序(25) 【题目链接】 自我感觉这题很难,因为容易超时,先上大佬写的代码。 #include<iostream> #include<stdio.h> #include<string.h> #include<s...
2018-02-08
0
441
小白成长记之PTA乙级题 1044
PTA乙级题 1044. 火星数字(20) 【题目链接】 个人感觉不难,但是我写的超级超级麻烦。 #include<stdio.h> #include<string.h> #include<math.h> void jiang(int n); int m...
2018-02-08
0
612
小白成长记之PTA乙级题 1043
PTA乙级题 1043. 输出PATest(20) 【题目链接】 #include<stdio.h> #include<string.h> int main() { char ch[10001]; gets(ch); int i,length,...
2018-02-08
0
478
小白成长记之PTA乙级题 1042
PTA乙级题 1042. 字符统计(20) 【题目链接】 #include<stdio.h> #include<string.h> #include<ctype.h> int main() { int i,n,len,a[26]={0},max,x...
2018-02-08
0
482
首页
上一页
47
48
49
50
51
52
53
54
55
56
下一页
末页