当前位置:   article > 正文

《华为机试》刷题之HJ87 密码强度等级

hj87 密码强度等级

一、题目

在这里插入图片描述
在这里插入图片描述

二、示例

在这里插入图片描述

三、代码

while True:
    try:
        str1 = input()
        result = 0
        # 密码长度
        if len(str1) <= 4:
            result += 5
        elif len(str1) >= 8:
            result += 25
        else:
            result += 10
        word_uper = 0
        word_lower = 0
        num = 0
        signal = 0
        # 遍历字符串
        for item in str1:
            if item.islower():
                word_lower += 1
            elif item.isupper():
                word_uper += 1
            elif item.isdigit():
                num += 1
            else:
                signal += 1
        # 判断字母情况
        if word_lower == 0 and word_uper == 0:
            result += 0
        elif word_lower > 0 and word_uper > 0:
            result += 20
        else:
            result += 10
        # 判断数字情况
        if num == 0:
            result += 0
        elif num == 1:
            result += 10
        else:
            result += 20
        # 判断符号情况
        if signal == 0:
            result += 0
        elif signal == 1:
            result += 10
        else:
            result += 25
        # 判断奖励情况
        if word_lower > 0 and word_uper > 0 and num > 0 and signal > 0:
            result += 5
        if (word_lower > 0 and num > 0 and signal > 0) or (word_uper > 0 and num > 0 and signal > 0):
            result += 3
        else:
            result += 2
        # 评分标准
        if result >= 90:
            print('VERY_SECURE')
        if 80 <= result < 90:
            print('SECURE')
        if 70 <= result < 80:
            print('VERY_STRONG')
        if 60 <= result < 70:
            print('STRONG')
        if 50 <= result < 60:
            print('AVERAGE')
        if 25 <= result < 50:
            print('WEAK')
        if 0 <= result < 25:
            print('VERY_WEAK')
    except:
        break
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70

四、算法说明

  • 计算密码长度的得分;
  • 建立四个计数值:word_uperword_lowernumsignal,分别表示大写字母、小写字母、数字、符号四种字符的个数;
  • 遍历字符串,将对应的字符个数,统计出来;
  • 根据统计的计数值,判断奖励的情况;
  • 根据最后的得分值,判断密码强度。

胡萝卜

编辑时间:2022年1月21日20:06:12

我不知道将去向何方,但我已在路上!
时光匆匆,虽未曾谋面,却相遇于斯,实在是莫大的缘分,感谢您的到访 !
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/914597
推荐阅读
相关标签
  

闽ICP备14008679号