码迷,mamicode.com
首页 >  
搜索关键字:integer to roman    ( 15811个结果
包装类与装箱、拆箱
包装类 基本数据类型所对应的引用数据类型 0bject可统一所有数据,包装类的默认值是null 包装类对应 基本数据类型 包装类型 byte Byte short Short int Integer long Long float Float double Double boolean Boolea ...
分类:其他好文   时间:2021-03-08 14:18:04    阅读次数:0
冰凉的键盘挡不住炽热的心
Integer max = null; //今天天气阴 for (int i = 0; i < nums.length; i++) { boolean change = false; //我拿着雨伞来到青浦图书馆,当然这里j虽然是从比i大一个数的地方开始自增 //但最后也需要将数字从开始的地方开始自 ...
分类:其他好文   时间:2021-03-08 13:50:41    阅读次数:0
1037 Magic Coupon (25 分)
The magic shop in Mars is offering some magic coupons. Each coupon has an integer N printed on it, meaning that when you use this coupon with a produc ...
分类:其他好文   时间:2021-03-06 14:44:48    阅读次数:0
1132 Cut Integer (20 分)
水~。 注意右半部为$0$的情况。 int main() { int T; cin>>T; while(T--) { string s; cin>>s; string a=s.substr(0,s.size()/2),b=s.substr(s.size()/2); int ts=stoi(s),ta ...
分类:其他好文   时间:2021-03-04 13:05:25    阅读次数:0
1498. Number of Subsequences That Satisfy the Given Sum Condition
Given an array of integers nums and an integer target. Return the number of non-empty subsequences of nums such that the sum of the minimum and maximu ...
分类:其他好文   时间:2021-03-03 12:23:05    阅读次数:0
泛型(泛型擦除)
泛型 1.什么是泛型 1.1泛型概念:Java泛型是J2 SE1.5中引入的一个新特性,其本质是参数化类型,也就是说所操作的数据类型被指定为一个参数(type parameter), 这种参数类型可以用在类、接口和方法的创建中,分别称为泛型类、泛型接口、泛型方法。 1.2本质:参数化类型 1.3语法 ...
分类:其他好文   时间:2021-03-02 12:20:03    阅读次数:0
[LeetCode] 1046. Last Stone Weight 最后的石头重量
We have a collection of stones, each stone?has a positive integer weight. Each turn, we choose the two?heaviest?stones?and smash them together. Suppos ...
分类:其他好文   时间:2021-03-02 12:02:57    阅读次数:0
Java如何实现LinkedList按索引下标进行插入
public static void main(String[] args) { LinkedList<Integer> integers = new LinkedList<>(); integers.add(1); integers.add(8); integers.add(1,3); for ( ...
分类:编程语言   时间:2021-02-24 13:21:22    阅读次数:0
2.爱生气的书店老板
爱生气的书店老板 解题思路,首先计算不算X的所有满意的客户数量。然后计算X时间可能产生的最大的客户满意数量,即使用滑动窗口的方式,从左往右,找出最大的值,加上之前的值即可。代码如下 class Solution { /** * @param Integer[] $customers * @param ...
分类:其他好文   时间:2021-02-24 13:11:48    阅读次数:0
[CF1375F] Integer Game
\(\text{Problem}:\)题目链接 \(\text{Solution}:\) 记一个状态为有序三元组 \((x,y,z)\)。 当 \(x<y<z\) 时,考虑先手一步必胜的情况:当 \(z-y=y-x\) 且后手上一步选了 \(z\) 时,先手给定 \(z-y\) 这个数。 当 \(x ...
分类:其他好文   时间:2021-02-24 13:02:04    阅读次数:0
15811条   上一页 1 ... 11 12 13 14 15 ... 1582 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!