码迷,mamicode.com
首页 >  
搜索关键字:a long    ( 19145个结果
【Android】Gradle下载不动,修改为阿里镜像
修改build.gradle文件 // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { goog ...
分类:移动开发   时间:2021-06-04 19:09:13    阅读次数:0
常量 变量
类型转换 publicclassdemo06 { publicstaticvoidmain(String[] args) { inti=128; byteb= (byte)i;//内存溢出 byte 最大值127 //低 高 //byte,short,char,int,long,float,doub ...
分类:其他好文   时间:2021-06-04 19:00:16    阅读次数:0
UVa 10382 Watering Grass (贪心 区间覆盖)
利用几何关系转化以后,变成经典的区间覆盖问题 #include<bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 10010; const double eps = 1e-11; int n, L, ...
分类:其他好文   时间:2021-06-03 17:39:32    阅读次数:0
feign 调用注意事项
参考链接: https://blog.csdn.net/wahaha13168/article/details/81211002 https://www.cnblogs.com/merryyou/p/11670171.html feign 接口返回流 服务提供者 @GetMapping("/{id} ...
分类:其他好文   时间:2021-06-02 20:54:56    阅读次数:0
如何判断乘法溢出
网上的很多代码都是错的 正确的代码 using ll = long long int; ll is_mul_overflow(ll a,ll b) { if (a == -1) return (b == INT64_MIN); if (b == -1) return (a == INT64_MIN) ...
分类:其他好文   时间:2021-06-02 19:24:09    阅读次数:0
AtCoder Beginner Contest 203 (A~D,玄学二分场)
补题链接:Here A - Chinchirorin 给出 \(a,b,c\) 三个正整数,现请打印各种情况的答案: \(a=b=c\) ,输出一个即可 \(a = b\ and\ a != c\) 或者 \(a = c\ and\ a != b\) 或者 \(b = c\ and\ a != b\ ...
分类:其他好文   时间:2021-06-02 19:08:52    阅读次数:0
Deltix Round, Spring 2021 (open for everyone, rated, Div. 1 + Div. 2)
#include <bits/stdc++.h> #define please return #define ac 0 using namespace std; using ll = long long ; bool vis[1003]; void solve() { int n,m; cin>>n ...
分类:编程语言   时间:2021-06-02 18:28:48    阅读次数:0
换根dp
#include <iostream> #include <vector> using namespace std; using ll = long long ; const int N=2e5+10; ll f[N],g[N],size1[N]; vector<int>gg[N]; void df ...
分类:其他好文   时间:2021-06-02 17:01:29    阅读次数:0
分布式ID生成方式(雪花算法)
转自:https://blog.csdn.net/weixin_51489504/article/details/112251232 雪花算法(SnowFlake) 雪花算法是Twitter开源的分布式ID生成算法. 主要是由64bit的long型生成的全局ID,引入了时间戳和ID保持自增的属性. ...
分类:编程语言   时间:2021-06-02 17:00:53    阅读次数:0
CF 580E Kefa and Watch
#include<bits/stdc++.h> #define ull unsigned long long using namespace std; const int N=1000011; const ull St=233,M1=1000000007,M2=1000000009; int n,m ...
分类:其他好文   时间:2021-06-02 16:00:05    阅读次数:0
19145条   上一页 1 ... 4 5 6 7 8 ... 1915 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!