第一章 操作系统引论 Summary:Operating System is the first layer of software configured on the computer hardware,which is the first expansion of the hardware sy ...
分类:
其他好文 时间:
2019-06-12 20:01:55
阅读次数:
141
java.lang.IllegalStateException: Unexpected use of scheduler. 在启动类加: ...
分类:
编程语言 时间:
2019-06-12 19:57:06
阅读次数:
290
##################################################### ## 等待时间 ##################################################### """ expected_conditions 类提供的常见方法 t... ...
分类:
其他好文 时间:
2019-06-12 18:16:28
阅读次数:
95
D. Ehab and the Expected XOR Problem Given two integers n and x, construct an array that satisfies the following conditions: for any element ai in the ...
分类:
其他好文 时间:
2019-06-11 00:52:20
阅读次数:
124
在运行测试时,有时需要直接跳过某些测试用例,或者当用例符合某个条件时跳过测试。 unittest提供了相应的装饰器: ...
分类:
其他好文 时间:
2019-06-09 12:46:34
阅读次数:
117
| A | B | C | D | E | F | | : : | : : | : : | : : | : : | : : | | 构造 | 排序 | 贪心,筛法 | 异或,前缀和 | 计数问题 | 点分治 | | 1000 | 1200 | 1300 | 1900 | 2500 | 2300 | ...
分类:
其他好文 时间:
2019-06-07 17:52:31
阅读次数:
110
题目大意:对于一个序列,定义它的价值是它的所有前缀和的 $\gcd$ 中互不相同的数的个数。给定整数 $n$,问在 $1$ 到 $n$ 的排列中,有多少个排列的价值达到最大值。答案对 $10^9+7$ 取模。 $2\le n\le 10^6$。 一道 Div. 2 的难度 2500 的题,真的不是吹 ...
分类:
其他好文 时间:
2019-06-07 00:37:20
阅读次数:
174
第一步、导入文件上传的jar包,maven配置坐标fileupload 第二步、写页面(springMVC环境自行搭建),必须设置加密类型为多部件表单数据类型 第三步、在SpringMVC的配置文件中添加文件解析器,该文件解析器的id必须为multipartResolver 第四步、在从控制器中添加 ...
分类:
编程语言 时间:
2019-06-06 23:04:15
阅读次数:
264
使用requests发请求时发生报错 TypeError: __init__() got an unexpected keyword argument 'strict' 莫慌,不是你代码写错了,是因为请求模块requests不是最新的 只需要 就OK了 ...
分类:
其他好文 时间:
2019-06-05 18:12:33
阅读次数:
873
第二天加班去了! 语法约定: 多行语句 Python语句中一般以新行作为为语句的结束符。 但是我们可以使用斜杠( \)将一行的语句分为多行显示,如下所示: total = item_one + \ item_two + \ item_three 语句中包含[], {} 或 () 括号就不需要使用多行 ...
分类:
编程语言 时间:
2019-06-05 15:14:23
阅读次数:
121