真实墨镜

文章
2
资源
0
加入时间
2年10月18天

nginx配置ssl证书一 颁发证书二 配置Nginx

Nginx实现https需要http_ssl_module模块支持,该模块是默认编译模块,不需要我们再次编译。一 生成证书生成key文件openssl genrsa -out cert.key 2048生成pem文件openssl req -new -x509 -days 3650 -key cert.key -out cert.pem二 配置Nginx将生成的key、pem文件拷贝到nginx的conf目录下SSL server { list

The XOR Largest Pair

The XOR Largest Pair链接:https://ac.nowcoder.com/acm/problem/50993来源:牛客网时间限制:C/C++ 1秒,其他语言2秒空间限制:C/C++ 32768K,其他语言65536K64bit IO Format: %lld题目描述在给定的N个整数A1,A2…ANA_1,A_2…A_NA1​,A2​…AN​中选出两个进行xor运算,得到的结果最大是多少?输入描述:第一行一个整数N,第二行N个整数A1∼AN第一行一个整数N,第二行N个整数