package snippet;
import java.util.*;
public class Snippet {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while(sc.hasNext()){
String str = sc.next();
boolean bol1=isNotRepeatString(str);
boolean bol2=isLength(str);
boolean bol3=isInclude(str);
if(bol1&&bol2&&bol3) {System.out.println("OK");}
else {System.out.println("NG");}
}
sc.close();
}
public static boolean isNotRepeatString(String str){
int len = str.length();
for (int i = 0; i < len; i++){
for (int j = i + 1; j < len-3; j++){
if (str.charAt(i) == str.charAt(j) && str.charAt(i+1) == str.charAt(j+1) && str.charAt(i+2) == str.charAt(j+2)){
return false;
}
}
}
return true;
}
public static boolean isLength(String str){
if(str.length()>8) {return true;}
else {return false;}
}
public static boolean isInclude(String str){
boolean b1 = false;
boolean b2 = false;
boolean b3 = false;
boolean b4 = false;
for(int i=0;i<str.length();i++){
if(str.charAt(i)>='a'&&str.charAt(i)<='z'){
b1 = true;
}
if(str.charAt(i)>='A'&&str.charAt(i)<='Z'){
b2 = true;
}
if(str.charAt(i)>='0'&&str.charAt(i)<='9'){
b3 = true;
}
if(!(str.charAt(i)>='A'&&str.charAt(i)<='Z')&&!(str.charAt(i)>='0'&&str.charAt(i)<='9')&&!(str.charAt(i)>='a'&&str.charAt(i)<='z')){
b4 = true;
}
}
if((b1 && b2 && b3 && b4) || (b1 && b2 && b3) || (b1 && b2 && b4) || (b1 && b3 && b4) || (b2 && b3 && b4)){
return true;
}else{
return false;
}
}
}
HWOJ密码验证合格程序 (为什么错了,搞不懂。。)
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 野球场,是讲规矩的。 野球场的人,都是有故事的。 1 在野球场子里,判断力是真的很重要的一件事情。有时候你看着一个...
- 成长记录-连载(三十六) ——我的第一篇五千字长文,说了什么,你一定想不到 并不是不想每天写公众号,而是之前思考怎...