#include<bits/stdc++.h>
using namespace std;
namespace rad{
mt19937_64 R(time(0));
inline int Rand(int l,int r){
uniform_int_distribution<int> distribution(l,r);
return distribution(R);
}
}
using namespace rad;
int main(){
printf("%d",Rand(1,100));
return 0;
}
相关文章
- 12-10常用的Live Template模板
- 12-10[转]IntelliJ IDEA生成live template(代码模板) - 渡劫锦官城 - 博客园(转载请删除括号里的内容)
- 12-10idea 配置自定义模板
- 12-10IAR更改代码字体&快速模板设置。——Arvin
- 12-10基于MThings分享MODBUS数据配置模板
- 12-10VScode gdb g++调试模板
- 12-10SpringBoot--- Shiro(拦截,认证)、Thymeleaf(模板引擎)
- 12-10hdu1712分组背包模板
- 12-10helm模板文件chart编写语法详解
- 12-10PAT1076. Forwards on Weibo(标准bfs模板)