long
-
1–我们写了一个java类,那么生成一个对象占用多大的内存?
public class Student { private long id; private long userId; private byte state; private l…
-
谷粒商城P128-SKU数据模型
PUT product { “mappings”: { “properties”: { “skuId”: { “type”: “long” }, “spuId”: { “type”…
-
Codeforces Round #697 (Div. 3)
比赛链接 Codeforces Round #697 (Div. 3) G. Strange Beauty 题目大意: 有 /(n/) 个数,从中挑选一个最大的子集,使得集合中任意…
-
【Atcoder F – Cumulative Cumulative Cumulative Sum】线段树
要特别注意下精度,long,int范围。WA了几次 import java.util.Scanner; class Main { // static long[] A2 ;//…
-
S32DS中链接文件及启动代码学习
S32DS中链接文件及启动代码学习 一、链接文件 <Linker Files>文件夹中有linker_flash.ld文件和linker_ram.ld文件。 Lin…
-
警告提示收集
Enum values with underlying type ‘NSInteger’ should not be used as format arguments; add…
-
[模板]2-SAT问题
#include<cstdio> #include<cstring> #include<string> #include<stac…
-
org.junit.Assert
引入包,以下两种方式都是OK的,看个人喜好,我倾向于使用第二种,会更加清晰直观。下面的代码我都会用第二种 import static org.junit.Assert.*; imp…
-
CF484A Bits
CF484A Bits 题目 https://codeforces.com/problemset/problem/484/A 题解 思路 知识点:贪心,位运算。 每位独立考虑,要使…
-
13 | 字符串哈希(字符串的哈希判等、前缀和的思想)
题目描述 给定一个含有 26 个小写英文字母的字符串。有m次询问,每次给出2个区间,请问这两个区间里的子字符串是否一样? 输入 第一行输入一个字符串 S。第二行一个数字 m,表示 …