全部评论
我想问一下 多少分才不会挂?
100 50 10 80
第二题人麻了,一直66.7,第三四题目没思路,有大佬能说一下么
100,78,55,22😭
不是只有四题么
95+72+9+4,后两题全是偷的分,害。。。
怎么有五题😮
100 71 82 22
100,100,0,22😭
100 100 100 0
100 72 100 100
有群吗
最后一题动归只过55,觉得思路没问题,就是过不了
第四题求最多末尾0,感觉思路没问题,只过了4.5%,不知道哪错了 public class Main { private static int res = 0; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[][] help = new int[n][2]; for(int i=0;i<n;i++){ int num = sc.nextInt(); while(num%5 == 0){ help[i][0]++; num /= 5; } while(num%2 == 0){ help[i][1]++; num /= 2; } } backTrack(0,help,0,0,true); System.out.println(res); } private static void backTrack(int i,int[][]help,int num5,int num2,boolean canTake){ if(i == help.length){ res = Math.max(res,Math.min(num2,num5)); return; } backTrack(i+1,help,num2,num5,true); if(canTake){ backTrack(i+1,help,num5+help[i][0],num2+help[i][1],false); } } }
第四题有大佬吗?
第四题数末尾0个数的,过了22,其他超时有一样的吗
100 55 100 4.5
100 100 100 30有希望进面吗
相关推荐
11-24 14:20
北京大学 Java CoderEcho:虽然我没去大厂,但是待过俩家初创,我的感觉是厉害的初创很舍得给钱,也很看你的产出,产出不行直接把你开了。当然大厂也可能有这个问题。建议还是去大厂,如果被裁员了最起码还有大厂的title,这年头不确定的事儿太多了。
点赞 评论 收藏
分享
牛客84762733号:3月份吧,没有offer的我感觉时间过得很漫长
点赞 评论 收藏
分享