题面 B. Checkout Assistant time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output B. Checkout Assi ...
分类:
其他好文 时间:
2019-02-14 22:21:33
阅读次数:
268
In this lesson you will learn to say what you need. 课上内容(Lesson) twin size bed 单人床 elevator n. 电梯;升降机;升降舵;起卸机 lift vt. 举起;提升;鼓舞;空运;抄袭vi. 消散;升起;耸立n. 电梯 ...
分类:
其他好文 时间:
2019-02-14 00:29:53
阅读次数:
232
2019.2.11 南京邮电的ctf平台: 地址http://ctf.nuptzj.cn/challenges# 他们好像搭新的平台了。。。我注册弄了好半天。。。 1. 签到题,打开网址: 查看一下页面源代码: 2. 这道题很熟悉,就是找 md5后开头为0e的 然后传参就行了: 比如 ?a=s878 ...
分类:
其他好文 时间:
2019-02-11 19:57:33
阅读次数:
302
这题我在考场上也是想出了正解的……但是没调出来。 题目链接:CF原网 题目大意:给一个长度为 $n$ 的序列 $a$,$q$ 个操作:区间乘 $x$,求区间乘积的欧拉函数模 $10^9+7$ 的值。 $1\le n\le 4\times 10^5,1\le q\le 2\times 10^5,1\l ...
分类:
其他好文 时间:
2019-02-11 16:53:25
阅读次数:
495
题解: $$ ans=F\left ( \prod _{i=l}^{r}a_i \right ) $$ $$ =(p_i-1){p_i}^{k_i-1}*.....*(p_j-1){p_j}^{k_j-1} $$ $$={p_i}^{k_i}*.....*{p_j}^{k_j}*(\frac{p_i ...
分类:
其他好文 时间:
2019-02-11 10:37:42
阅读次数:
229
从1到n的奇数,从1到n之间的偶数,排列在一起,找到第k个数 Input 输入包含 n and k (1?≤?k?≤?n?≤?1012). Please, do not use the %lld specifier to read or write 64-bit integers in C++. I ...
分类:
编程语言 时间:
2019-02-10 20:17:20
阅读次数:
161
COMP2396B - Assignment 1Due: 12 Feb, 2019 23:55IntroductionThis assignment tests your basic programming skill in Java and refreshes the programming sk ...
分类:
其他好文 时间:
2019-02-09 21:01:55
阅读次数:
118
Homework31. Usually, there are many ways to translate a block of C code into assembly.It is always a good idea that you stick with your own way. Pleas ...
分类:
其他好文 时间:
2019-02-03 19:52:42
阅读次数:
160
运行Java程序,javac运行.java文件没有报错,但java运行的时候报错 ??? 仔细看一下报错 Exception in thread "main" java.lang.UnsupportedClassVersionError: helloworld has been compiled b ...
分类:
编程语言 时间:
2019-02-03 14:23:37
阅读次数:
463
粘包只会出现在tcp,udp传输不会产生粘包现象。解决粘包的原理就是服务器预先向客户端发送客户端即将获取文件的大小。 第一版解决方案: 服务器: 客户端: 升级版: 服务器: 客户端: ...
分类:
其他好文 时间:
2019-02-02 19:18:55
阅读次数:
152