Love丶FFC's Blog

PAT乙级:1081 检查密码

2020-04-13 14:08:20
阅读:709   •   评论:10
标签:,

本题要求你帮助某网站的用户注册模块写一个密码合法性检查的小功能。该网站要求用户设置的密码必须由不少于6个字符组成,并且只能有英文字母、数字和小数点 .,还必须既有字母也有数字。

输入格式:

输入第一行给出一个正整数 N(≤ 100),随后 N 行,每行给出一个用户设置的密码,为不超过 80 个字符的非空字符串,以回车结束。

输出格式:

对每个用户的密码,在一行中输出系统反馈信息,分以下5种:

如果密码合法,输出Your password is wan mei.

如果密码太短,不论合法与否,都输出Your password is tai duan le.

如果密码长度合法,但存在不合法字符,则输出Your password is tai luan le.

如果密码长度合法,但只有字母没有数字,则输出Your password needs shu zi.

如果密码长度合法,但只有数字没有字母,则输出Your password needs zi mu.

输入样例:

5
123s
zheshi.wodepw
1234.5678
WanMei23333
pass*word.6

输出样例:

Your password is tai duan le.
Your password needs shu zi.
Your password needs zi mu.
Your password is wan mei.
Your password is tai luan le.

编程语言:Python

解题思想:

1.对每种情况逐一判断

2.注意判断全为数字或全为字母时需要同时判断小数点

时间复杂度:O(N^2)

代码如下:

  1. NOP = int(input())
  2. List = ['.', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u',
  3. 'v',
  4. 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
  5. 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'] # 合法的字符
  6.  
  7. for i in range(NOP):
  8. Judge = True # 标记各种情况,默认为符合
  9. Password = input()
  10. if len(Password) < 6: # 密码长度不足
  11. print("Your password is tai duan le.")
  12. else:
  13. for j in range(len(Password)):
  14. if Password[j] not in List: # 存在不合法的字符
  15. Judge = False
  16. print("Your password is tai luan le.")
  17. break
  18. if Judge:
  19. for j in range(len(Password)):
  20. if not Password[j].isalpha() and Password[j] != '.': # 该字符不是字母或小数点
  21. Judge = False
  22. break
  23. if Judge: # 该密码全为字母+小数点
  24. print("Your password needs shu zi.")
  25. else:
  26. Judge = True
  27. for j in range(len(Password)):
  28. if not Password[j].isnumeric() and Password[j] != '.': # 该字符不是数字或小数点
  29. Judge = False
  30. break
  31. if Judge: # 该密码全为数字+小数点
  32. print("Your password needs zi mu.")
  33. else:
  34. print("Your password is wan mei.")

评论板

共有 10 条评论

  1. cheap jordans

    I just wanted to thank you for the fast service. quite possibly they look great. I received them a day earlier than expected. such as the I will definitely continue to buy from this site. in either case I will recommend this site to my friends. Thanks!
    cheap jordans https://www.cheaprealjordan.com/

  2. cheap louis vuitton handbags

    I just wanted to thank you for the fast service. also they look great. I received them a day earlier than expected. just like I will definitely continue to buy from this site. regardless I will recommend this site to my friends. Thanks!
    cheap louis vuitton handbags https://www.louisvuittonsoutletstore.com/

  3. cheap jordan shoes

    I just wanted to thank you for the fast service. also known as they look great. I received them a day earlier than expected. much I will definitely continue to buy from this site. no matter what I will recommend this site to my friends. Thanks!
    cheap jordan shoes https://www.realcheapretrojordanshoes.com/

  4. cheap jordans online

    I just wanted to thank you for the fast service. and they look great. I received them a day earlier than expected. particularly I will definitely continue to buy from this site. you decide I will recommend this site to my friends. Thanks!
    cheap jordans online https://www.realjordansretro.com/

  5. cheap jordan shoes

    Read reviews and was a little hesitant since I had already inputted my order. perhaps but thank god, I had no issues. the same as received item in a timely matter, they are in new condition. situation so happy I made the purchase. Will be definitely be purchasing again.
    cheap jordan shoes https://www.cheapretrojordan.com/

  6. FoorryNox

    These findings are in agreement with the data obtained with the constitutive knockout model and suggest that, under steady state conditions of normal dietary P i, NaPi IIc is not an essential Na P i cotransporter in murine kidneys where to buy cialis cheap Enteropathy type intestinal T cell lymphoma

  7. cheap jordans for sale

    Read reviews and was a little hesitant since I had already inputted my order. or even a but thank god, I had no issues. like the received item in a timely matter, they are in new condition. you decide so happy I made the purchase. Will be definitely be purchasing again.
    cheap jordans for sale https://www.authenticcheapjordans.com/

  8. cheap louis vuitton

    Read reviews and was a little hesitant since I had already inputted my order. and but thank god, I had no issues. similar to received item in a timely matter, they are in new condition. in either case so happy I made the purchase. Will be definitely be purchasing again.
    cheap louis vuitton https://www.louisvuittonsoutletonline.com/

  9. authentic cheap jordans

    Read reviews and was a little hesitant since I had already inputted my order. or perhaps even but thank god, I had no issues. for example the received item in a timely matter, they are in new condition. you decide so happy I made the purchase. Will be definitely be purchasing again.
    authentic cheap jordans https://www.realjordansshoes.com/

  10. Preliaf

    cheapest priligy uk Measurable the first visit our milf chat condition

--------查看该分类下最新文章--------
^
新版博客正在完善中!域名:http://www.loveffc:8080,点击跳转,完全移植后将去除端口号。

Copyright © 2018 - 2021 FFC的小站 - 滇 ICP 备 18010780 号 - 1

- Powered by WordPress & AliYun · Theme by FFC -

- Environment by Windows & XAMPP · Designed by WebStorm & VSCode -

已运行:

访问量:511050