题解 | #打牌#

打牌

https://www.nowcoder.com/practice/82442ee76977479e8ab4b88dfadfca9f

import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String a = sc.next();
        String b = sc.next();
        if (a.length() >= b.length()) {
            if (b.length() < 5) {
                if (a.length() == 1 && b.length() == 1) {
                    if (a.charAt(0) > b.charAt(0)) System.out.println("YES");
                    return;
                }
                int len = 1;
                for (int i = 1; i < a.length(); i++) {
                    if (a.charAt(i) <= b.charAt(0)) continue;
                    if (a.charAt(i) == a.charAt(i - 1)) len++;
                    else len = 1;
                    if (len == b.length()) {
                        System.out.println("YES");
                        return;
                    }
                }
            } else if (b.length() == 5) {
                char prev = b.charAt(0);
                int len = 0;
                for (int i = 1; i < a.length() - 4; i++) {
                    if (a.charAt(i) <= b.charAt(0)) continue;
                    if (a.charAt(i) == prev + 1) {
                        len++;
                        if (len == 5) {
                            System.out.println("YES");
                            return;
                        }
                    } else if (a.charAt(i) > prev + 1) len = 1;
                    prev = a.charAt(i);
                }
            }
        }
        System.out.println("NO");
    }
}

全部评论

相关推荐

头像
10-15 22:27
已编辑
门头沟学院 C++
罗格镇的小镇做题家:我投了hr打电话来说学历太低了不符合要求,建议投荣耀,结果荣耀也投了一定水花没有,非本211硕
投递华为等公司10个岗位
点赞 评论 收藏
分享
头像
11-18 16:08
福州大学 Java
影流之主:干10年不被裁,我就能拿别人一年的钱了,日子有盼头了
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务