题解 | #识别有效的IP地址和掩码并进行分类统计#

识别有效的IP地址和掩码并进行分类统计

http://www.nowcoder.com/practice/de538edd6f7e4bc3a5689723a7435682

def get_lst(s):
    lst = []
    for i in s.split('.'):
        if i.isdigit():
            lst.append(int(i))
    return lst
    
def check_ip(lst):
    if len(lst) != 4:
        return False
    # 检查每段数字是否在0~255之间
    for i in lst:
        if i not in range(0, 256):
            return False
    return True

def check_mask(lst):
    if len(lst) != 4:
        return False
    res = ''
    for i in lst:
        temp = bin(i).replace('0b', '')
        res += (8 - len(temp)) * '0' + temp # 不足8位用‘0’补全
    if '01' in res or '1' not in res or '0' not in res:
        return False
    return True
    
dic = {
    'a' : 0, 'b' : 0, 'c' : 0, 'd' : 0, 'e' : 0, 'illegal' : 0, 'private' : 0
}

while True:
    try:
        ip, mask = input().split('~')
        lst_ip, lst_mask = get_lst(ip), get_lst(mask)
        # 忽略0和127开头的IP地址
        if lst_ip[0] in [0, 127]:
            continue
        if not check_mask(lst_mask):
            dic['illegal'] += 1
            continue
        if not check_ip(lst_ip):
            dic['illegal'] += 1
            continue
        # 检查是否为私网
        if (lst_ip[0] == 10) or (lst_ip[0] == 172 and lst_ip[1] in range(16, 32)) or (lst_ip[0] == 192 and lst_ip[1] == 168):
            dic['private'] += 1 # 私网
        # 继续检查第一段
        if lst_ip[0] in range(1, 127):
            dic['a'] += 1
        elif lst_ip[0] in range(128, 192):
            dic['b'] += 1
        elif lst_ip[0] in range(192, 224):
            dic['c'] += 1
        elif lst_ip[0] in range(224, 240):
            dic['d'] += 1
        elif lst_ip[0] in range(240, 256):
            dic['e'] += 1
    except:
        break

for i in dic.values():
    print(i, end=' ')
print()
全部评论
输入的数据是多行的话,可以用 input 进行处理吗
点赞 回复 分享
发布于 2022-03-14 15:01
('6.72.161.12', '255.252.0.0') 问一下,这个ip为啥算是a类的,我和标准答案比对了,才找出来这个东西,浪费了我一个通宵,我理解252不是255,应该是子网掩码问题,应该算是错误的啊,求解惑,不胜感激。
点赞 回复 分享
发布于 2022-05-18 12:58

相关推荐

服从性笔试吗,发这么多笔,现在还在发。
蟑螂恶霸zZ:傻 x 公司,发两次笔试,两次部门匹配挂,
投递金山WPS等公司10个岗位 >
点赞 评论 收藏
分享
我也曾抱有希望:说的好直白
点赞 评论 收藏
分享
8 5 评论
分享
牛客网
牛客企业服务