给定n组ai,bi , pi,对于每组数据,求出ai^bi mod pi 的值。 #include<iostream>#include<cstdio>typedef long long ll;using namespace std;int qmi(int a,int b,int p){ int re ...
分类:
其他好文 时间:
2020-06-09 11:20:14
阅读次数:
71
在controller层接收Get请求参数,最好还是用基本类型接收会比较好,即使是date类型的,也可以使用date类型去数据库查找。 date类型不用去考虑用什么类型,如果数据库类型为datetime或date。用String类型就可以查询了。如下(注意符号) SELECT * FROM teac ...
分类:
编程语言 时间:
2020-06-08 22:12:38
阅读次数:
367
1、KDC 添加用户 ,输入密码 HTTP@HADOOP.COM 2、客户机(linux),kerberos客户端安装 3、客户机(linux),kerberos客户端配置 4、关闭客户机防火墙 systemctl stop firewalld.service 5、配置客户机host文件 6、客户机 ...
分类:
其他好文 时间:
2020-06-08 12:55:03
阅读次数:
154
一、iptables防火墙1、基本操作————————————————————————————————# 查看防火墙状态service iptables status ————————————————————————————————# 停止防火墙service iptables stop ————— ...
分类:
系统相关 时间:
2020-06-07 21:03:04
阅读次数:
113
通常我们在docker中拉取的镜像都是在docker hub在线存储库中获取的,这个在线存储库里的docker镜像可以由任何用户发布和使用,显然这在某些场景下是不适用的,比如某些互金的隐私项目,或者是公司完全处于内网状态不能访问外网,再或者你想个性化定制某些配置等等等,所以这就需要用到私有存储库了, ...
分类:
其他好文 时间:
2020-06-07 09:16:50
阅读次数:
59
题目 Description Farmer John 决定给他的奶牛们照一张合影,他让 N (1 ≤ N ≤ 50,000) 头奶牛站成一条直线,每头牛都有它的坐标(范围: 0..1,000,000,000)和种族(0或1)。一直以来 Farmer John 总是喜欢做一些非凡的事,当然这次照相也不 ...
分类:
其他好文 时间:
2020-06-05 23:24:44
阅读次数:
121
同 Luogu P3373 注意如果写 pushup 的话不要越界 注意更新 sum 值的位置 # include <iostream> # include <cstdio> # define MAXN 100000+5 # define LL long long using namespace s ...
分类:
其他好文 时间:
2020-06-05 19:30:00
阅读次数:
44
1 convert(varchar(10),字段名,转换格式) 2 3 CONVERT(nvarchar(10),count_time,121) 4 CONVERT为日期转换函数,一般就是在时间类型(datetime,smalldatetime)与字符串类型(nchar,nvarchar,char, ...
分类:
数据库 时间:
2020-06-05 15:31:36
阅读次数:
76
1.查看开放端口列表 firewall-cmd --list-ports --查看开放端口列表 开启防火墙 systemctl start firewalld 关闭防火墙 systemctl stop firewalld 查看防火墙状态 systemctl status firewalld 2.开放 ...
分类:
其他好文 时间:
2020-06-04 10:18:44
阅读次数:
153
题意: 求出满足要求的数组个数: $1\leq a[i] \leq n,1\leq a[1]<a[2]<...<a[k]\leq n$,元素个数为:\(k\) 分析: 问题取决于最小的元素 \(a[1]\) 。 设 \(x=n*a[1]+m\),则$x%a[1]=m$,即 \(x%a[1]%a[2] ...
分类:
其他好文 时间:
2020-05-30 22:02:16
阅读次数:
64