题解 | 密码强度等级

密码强度等级

https://www.nowcoder.com/practice/52d382c2a7164767bca2064c1c9d5361

import java.util.*;
import java.lang.*;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static int lenJudge(String pwd){
        int len = pwd.length();
        if (len<=4) return 5;
        else if (len<=7) return 10;
        else return 25;
    }

    public static int charJudge(String pwd){
        StringBuffer sb_small = new StringBuffer();
        StringBuffer sb_big= new StringBuffer();
        for(int i=0;i<26;i++){
            sb_small.append((char)(65+i));
            sb_big.append((char)(97+i));
        }
        String sSmall = sb_small.toString(), sBig = sb_big.toString();
        boolean has_small = false, has_big = false;
        for(int i=0;i<pwd.length();i++){
            if(sSmall.contains(pwd.substring(i,i+1))) has_small = true;
            if(sBig.contains(pwd.substring(i,i+1))) has_big = true;
        }
        if(has_big && has_small) return 20;
        else if (has_big || has_small) return 10;
        else return 0;
    }

    public static int numJudge(String pwd){
        String nums = "0123456789";
        int cnt = 0;
        for(int i=0;i<pwd.length();i++){
            if(nums.contains(pwd.substring(i,i+1))) cnt+=1;
        }
        if(cnt<=0) return 0;
        else if (cnt==1) return 10;
        else return 20;
    }

    public static int fJudge(String pwd){
        String cList = "!\"#$%&'()*+,-./:;<=>?@:;<=>?@[\\]^_`{|}~";
        int cnt = 0;
        for(int i=0;i<pwd.length();i++){
            if(cList.contains(pwd.substring(i,i+1))) cnt+=1;
        }
        if(cnt<=0) return 0;
        else if(cnt==1) return 10;
        else return 25;
    }

    public static String finalRes(int score){
        if(score>=90) return "VERY_SECURE";
        else if (score>=80) return "SECURE";
        else if (score>=70) return "VERY_STRONG";
        else if (score>=60) return "STRONG";
        else if (score>=50) return "AVERAGE";
        else if (score>=25) return "WEAK";
        else return "VERY_WEAK";
    }

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        while (in.hasNext()) { // 注意 while 处理多个 case
            String pwd = in.nextLine();

            int score = 0;
            score+=lenJudge(pwd);
            int charScore = charJudge(pwd);
            score+=charScore; //*
            int numScore = numJudge(pwd);
            score+=numScore; //*
            int fScore = fJudge(pwd);
            score+=fScore; //*
    
            if(charScore==20 && numScore>0 && fScore>0) score+=5;
            else if (charScore==10 && numScore>0 && fScore>0) score+=3;
            else if (charScore>0 && numScore>0 && fScore==0) score+=2;
            // System.out.println(score);
            System.out.println(finalRes(score));
        }
    }
}

模拟题,纯粹靠细心

全部评论

相关推荐

07-25 11:26
清华大学 Java
打开电脑,思绪又回到了7月份刚开始的时候,感觉这个月过的如梦如幻,发生了太多事,也算是丰富了我本就是平淡的人生吧太早独立的我习惯了一切都是自己做决定,拥有绝对的决定权,而且永远不会听取别人的建议。我就是那个恋爱四年出轨的男主啦,感觉既然在牛客开了这个头,那我就要做个有始有终的人。从我出轨到结束再到和女朋友和好如初真的太像一场梦了,短短的一个月我经历了太多,也成长了很多,放下了那些本就不属于我的,找回了那些我不该放弃的。我的人生丰富且多彩,但人不能一直顺,上天总会让你的生活中出点乱子,有好有坏,让你学会一些东西,让你有成长。我和女朋友的恋爱四年太过于平淡,日常除了会制造一些小浪漫之外,我们的生活...
段哥亡命职场:不得不说,我是理解你的,你能发出来足见你是个坦诚的人,至少敢于直面自己的内心和过往的过错。 这个世界没有想象中那样非黑即白,无论是农村还是城市,在看不见的阴影里,多的是这样的事。 更多的人选择站在制高点去谩骂,一方面是社会的道德是需要制高点的,另一方面,很多人不经他人苦,却劝他人善。 大部分的我们,连自己生命的意义尚且不能明晰,道德、法律、困境,众多因果交织,人会迷失在其中,只有真的走出来之后才能看明白,可是没走出来的时候呢?谁又能保证自己能走的好,走的对呢? 可是这种问题有些人是遇不到的,不去追寻,不去探寻,也就没了这些烦恼,我总说人生的意义在过程里,没了目标也就没了过程。 限于篇幅,没法完全言明,总之,这世界是个巨大的草台班子,没什么过不去了,勇敢面对,革故鼎新才是正确,祝你早日走出来。查看图片
点赞 评论 收藏
分享
码农索隆:竞争压力小,就你一个不用卷
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务