JAVA: public final int numWaterBottles(int numBottles, int numExchange) { int re = numBottles, empty = numBottles; while (empty >= numExchange) { int ...
分类:
其他好文 时间:
2021-05-24 03:39:54
阅读次数:
0
let staytimeGap = new Date(closedtime).getTime() - new Date(createtime).getTime(); let stayHour = Math.floor(staytimeGap / (3600 * 1000)); let leave1 ...
分类:
其他好文 时间:
2021-04-24 11:48:09
阅读次数:
0
formatTime(msTime) { let time = msTime / 1000; let minute = (Math.floor(time / 60) % 60) > 9 ? (Math.floor(time / 60) % 60) : '0' + (Math.floor(time / ...
分类:
其他好文 时间:
2021-04-14 12:17:05
阅读次数:
0
sql报错注入 1.报错函数 (1).floor()报错 语句: ?id=1' union select 1,count(),concat(payload,floor(rand(0)2))x from information_schema.columns group by x --+ (2).upd ...
分类:
数据库 时间:
2021-04-08 13:32:03
阅读次数:
0
P5495 Dirichlet前缀和 题意 给定长度为$n$的序列$a_i$,求出长度为$n$的数列$b$满足 \[ b_k = \sum_{i|k}a_i \] 对$b$取模$2^{32}$ \[ 1 \leq n \leq 2\times10^7 \] 分析 $a_i$贡献到$b_j$当且仅当任 ...
分类:
其他好文 时间:
2021-04-07 11:37:23
阅读次数:
0
博弈 继上一篇https://www.cnblogs.com/yoshinow2001/p/14608742.html http://poj.org/problem?id=1067威佐夫博弈,注意poj不能用万能头… 实现的时候直接用$k=a/\varphi$来求,同时如果原本的$a$已经是一个出现 ...
分类:
其他好文 时间:
2021-04-02 13:28:22
阅读次数:
0
js 可以使用 Math(算数) 对象来实现随机数的生成。 需要了解的 Math 对象方法 方法 描述 ceil(x) 对数进行上舍入,即向上取整。 floor(x) 对 x 进行下舍入,即向下取整。 round(x) 四舍五入。 random() 返回 0 ~ 1 之间的随机数,包含 0 不包含 ...
分类:
Web程序 时间:
2021-03-30 13:36:12
阅读次数:
0
C. Floor and Mod 给定x,y,求满足条件 ? a / b ? = a mod b 这样的整数对在(a <= x)(b <= y)上的数量。 分析条件式子:? a / b ? = a mod b, 不妨令k == a mod b == ? a / b ? ,可以得出:a == k * ...
分类:
其他好文 时间:
2021-03-06 14:13:16
阅读次数:
0
apipost如何设置mock变量,多个接口同时调用这个变量,如何保证调用的变量值是相同的? 这里我们使用的mock变量不能是apipost内置的mock字段,可以在登录接口的预执行脚本自己编写一个mock变量,apipost的脚本编写支持js语法。 在登录的与执行脚本中编写一个自定义mock变量, ...
function getRandomIntInclusive(min, max) { min = Math.ceil(min); max = Math.floor(max); return Math.floor(Math.random() * (max - min + 1)) + min; //含最 ...
分类:
Web程序 时间:
2021-02-25 12:00:42
阅读次数:
0