$\color{red}{也许你也在看了《如何5分钟搭建自己的博客》后觉得:哇塞太方便了我也要试一试!}$ $\color{blue}{然后你像我一样下载了Gridea}$ $\color{DarkOrchid}{然而,经过了重重筛选,你觉得原本の三个主题都太丑了。}$ $\color{DarkOr ...
分类:
其他好文 时间:
2020-03-01 21:51:13
阅读次数:
221
传送门:https://abc091.contest.atcoder.jp/tasks/arc092_a?lang=en 题目:On a two-dimensional plane, there are N red points and N blue points. The coordinates ...
分类:
其他好文 时间:
2020-03-01 20:17:00
阅读次数:
104
You have a garland consisting of nn lamps. Each lamp is colored red, green or blue. The color of the ii-th lamp is sisi ('R', 'G' and 'B' — colors of ...
分类:
其他好文 时间:
2020-02-29 10:19:53
阅读次数:
69
常用的工业组态软件有: PCHMI InTouch iFix WinCC 组态王 Citech 力控 Cimplicity RSView Wizcon MCGS DIAView LabView BLUE Open Studio ...
分类:
其他好文 时间:
2020-02-27 22:12:36
阅读次数:
89
1、hover是鼠标移动到当前标签上时,对应的css属性生效。 padding是给a标签按上、右、下、左的顺序加上边框 hover下面的属性: background-color: blue;当鼠标移动到使用hover的标签上时,该属性生效。 <!DOCTYPE html><html lang="en ...
分类:
Web程序 时间:
2020-02-27 19:18:00
阅读次数:
84
!important规则最重要,大于其它规则 行内样式规则,加1000 eg,<html> <head> </head> <body> <h3>站长中心</h3><p style="padding-left: 60;color: blue">站长 </p> </body></html> 对于选择器中 ...
分类:
Web程序 时间:
2020-02-27 13:01:12
阅读次数:
85
在一段落中想要更改字体颜色和大小的话,之前使用HTML是这样该更改的 <body> <p><font color="blue" size="30px"> 写字楼里写字间,写字间里程序员;<br/> 程序人员写程序,又拿程序换酒钱。<br/> 酒醒只在网上坐,酒醉还来网下眠;<br/> 酒醉酒醒日复日 ...
分类:
Web程序 时间:
2020-02-24 18:46:23
阅读次数:
85
题意:插入一些一次函数线段 每次询问在x = x0处这些线段的最大值 题解:李超树模版题 维护优势线段 注意这题的输入是x=1时的b #include <iostream> #include <stdio.h> using namespace std; const int MAXT = 50000; ...
分类:
Web程序 时间:
2020-02-24 18:23:11
阅读次数:
76
目录: 1、属性选择器 p[style]{ 有style属性的p标签 color:red; } p[class=red]{ class的值为red的p标签 background-color: blue; } p[class='red']{ class的值为red的p标签 background-col ...
分类:
Web程序 时间:
2020-02-23 18:13:57
阅读次数:
89
一、题目说明 题目75. Sort Colors,给定n个整数的列表(0代表red,1代表white,2代表blue),排序实现相同颜色在一起。难度是Medium。 二、我的解答 这个是一个排序,还是简单的,代码如下: 性能如下: ...
分类:
其他好文 时间:
2020-02-22 15:29:16
阅读次数:
74