首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
恒成立
获赞
754
粉丝
4
关注
1
看过 TA
39
男
上海理工大学
2022
Java
IP属地:浙江
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑恒成立吗?
发布(96)
评论
刷题
恒成立
关注TA,不错过内容更新
关注
2021-04-09 22:15
上海理工大学 Java
题解 | #合唱队#
import java.io.*; import java.util.*; public class Main{ public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); while(sc.hasNextInt()){ int n = sc.nextInt(); int[] arr = new int[n]; int[] arrL = new int[n...
软日20182073:
这解释。。。我觉得这其实是dp动态规划,arrL里存的是左边的最长递增子序列长度,arrR是从右边数的最长递增子序列长度
0
点赞
评论
收藏
分享
2021-04-09 21:06
上海理工大学 Java
题解 | #名字的漂亮度#
import java.io.*; import java.util.*; public class Main{ public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); while(sc.hasNextInt()){ int n = sc.nextInt(); sc.nextLine(); for(int i = 0; i < n; ++i){...
0
点赞
评论
收藏
分享
2021-04-04 21:40
上海理工大学 Java
统计字符
import java.io.*; import java.util.*; public class Main{ public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); while(sc.hasNextLine()){ String s = sc.nextLine(); char[] cc = s.toCharArray(); TreeMap<I...
0
点赞
评论
收藏
分享
2021-04-04 21:26
上海理工大学 Java
放苹果 · 背包问题
import java.io.*; import java.util.*; public class Main{ public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); while(sc.hasNextInt()){ int a = sc.nextInt(); // a 是苹果 int b = sc.nextInt(); // b 是盘子 // 方法一...
0
点赞
评论
收藏
分享
2021-04-04 21:17
上海理工大学 Java
放苹果
import java.io.*; import java.util.*; public class Main{ public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); while(sc.hasNextInt()){ int a = sc.nextInt(); int b = sc.nextInt(); System.out.println(count...
0
点赞
评论
收藏
分享
2021-04-04 20:44
上海理工大学 Java
字符统计个数
import java.io.*; import java.util.*; public class Main{ public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); while(sc.hasNextLine()){ String s = sc.nextLine(); char[] cc = s.toCharArray(); int count = ...
0
点赞
评论
收藏
分享
2021-04-04 20:39
上海理工大学 Java
提取不重复的数字
import java.io.*; import java.util.*; public class Main{ public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); while(sc.hasNextLine()){ String s = sc.nextLine(); HashSet<Character> set = new HashSet<>();...
0
点赞
评论
收藏
分享
2021-04-04 20:24
上海理工大学 Java
合并记录
import java.io.*; import java.util.*; public class Main{ public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); TreeMap<Integer, Integer> map = new TreeMap<>(); // 输出结果要求有序! while(sc.hasNextInt()){ int n = sc....
水是划水的人:
这里的for循环放在while的外面恐怕没法打印结果吧
0
点赞
评论
收藏
分享
2021-04-04 20:03
上海理工大学 Java
取近似值
import java.io.*; import java.util.*; public class Main{ public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); while(sc.hasNextDouble()){ double s = sc.nextDouble(); System.out.println(Math.round(s)); } } ...
0
点赞
评论
收藏
分享
2021-04-04 19:59
上海理工大学 Java
质数因子
import java.io.*; import java.util.*; public class Main{ public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); while(sc.hasNextLong()){ long s = sc.nextLong(); for (int i = 2; i <= Math.sqrt(s); i++) { ...
0
点赞
评论
收藏
分享
2021-04-04 19:40
上海理工大学 Java
进制转换
import java.io.*; import java.util.*; public class Main{ public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); while(sc.hasNextLine()){ String s = sc.nextLine(); System.out.println(Integer.parseInt(s.substring(2,s.l...
/二三:
***鬼才
0
点赞
评论
收藏
分享
2021-04-04 19:38
上海理工大学 Java
字符串分割
import java.io.*; import java.util.*; public class Main{ public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); while(sc.hasNextLine()){ String s = sc.nextLine(); if(s.length() <= 8){ System.out.pr...
0
点赞
评论
收藏
分享
2021-04-04 17:55
上海理工大学 Java
判断IP是否属于同一网段
import java.io.*; import java.util.*; public class Main{ public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); while(sc.hasNextLine()){ String mask = sc.nextLine(); String ip1 = sc.nextLine(); String ip2...
一婉鹅:
谢谢楼主的分享(๑•̀ㅂ•́)و✧,想请问一下那个ip2num将两个ip地址转化了之后的比较原理是什么🙇
0
点赞
评论
收藏
分享
2021-04-04 17:21
上海理工大学 Java
小球落地
import java.io.*; import java.util.*; public class Main{ public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); while(sc.hasNextInt()){ int h = sc.nextInt(); calc((double)h); } } public static void ca...
0
点赞
评论
收藏
分享
2021-04-04 17:06
上海理工大学 Java
蛇形矩阵
import java.io.*; import java.util.*; public class Main{ public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); while(sc.hasNextInt()){ int num = sc.nextInt(); int[][] dp = new int[num][num]; int index ...
0
点赞
评论
收藏
分享
1
2
3
4
5
6
7
关注他的用户也关注了:
牛客网
牛客企业服务