結果

問題 No.2283 Prohibit Three Consecutive
ユーザー AsahiAsahi
提出日時 2023-04-28 23:12:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 5,025 bytes
コンパイル時間 2,486 ms
コンパイル使用メモリ 82,864 KB
実行使用メモリ 66,428 KB
最終ジャッジ日時 2024-04-29 00:26:38
合計ジャッジ時間 6,729 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,064 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 194 ms
47,596 KB
testcase_09 AC 196 ms
47,948 KB
testcase_10 AC 196 ms
47,836 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

class Main{       
    
    void solver(){  
        int t = in.ni();
        while(t-->0) {
            int n = in.ni();
            String S = in.ns();
            S += S;
            boolean [][] dp = new boolean[S.length()][2];
            if(S.charAt(0) == '1') dp[0][1] = true;
            if(S.charAt(0) == '?') {
                dp[0][0] = true;
                dp[0][1] = true;
            }
            for(int i = 0 ; i < S.length() - 1 ; i ++ ) {
                for(int j = 0 ; j < 2 ; j ++ ) {
                    if(S.charAt(i+1) == '1') {
                        dp[i+1][1] = true;
                    }
                    if(S.charAt(i+1) == '0') {
                        dp[i+1][0] = true;
                    }
                    if(S.charAt(i+1) == '?') {
                        dp[i+1][0] = true;
                        dp[i+1][1] = true;
                    }
                }
            }
            int count = 0 ;
            String ans = "Yes";
            for(int i = 0 ; i < S.length() ; i ++ ) {
                if((dp[i][0]^dp[i][1])) {
                    count++;
                }
                else{
                    count = 0 ;
                }
                if(count == 3) {
                    ans = "No";
                }
            }
            out.println(ans);
        }
    }

    public static void main(String[] args){
        out = new PrintWriter(System.out);
        in  = new In();
        new Main().solver();
        out.flush();
    }
    private static PrintWriter out ;
    private static In in ;
}

class In{
    private final InputStream in = System.in;
    private static Scanner sc = new Scanner(System.in);
    private final byte[] buffer = new byte[1024];
    private int ptr = 0;
    private int buflen = 0;
    private boolean hasNextByte() {
        if (ptr < buflen) {
            return true;
        }else{
            ptr = 0;
            try {
                buflen = in.read(buffer);
            } catch (IOException e) {
                e.printStackTrace();
            }
            if (buflen <= 0) {
                return false;
            }
        }
        return true;
    }
    private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;}
    private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;}
    public boolean hasNext() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++; return hasNextByte();}
    String ns() {
        if (!hasNext()) throw new NoSuchElementException();
        StringBuilder sb = new StringBuilder();
        int b = readByte();
        while(isPrintableChar(b)) {
            sb.appendCodePoint(b);
            b = readByte();
        }
        return sb.toString();
    }
    long nl() {
        if (!hasNext()) throw new NoSuchElementException();
        long n = 0;
        boolean minus = false;
        int b = readByte();
        if (b == '-') {
            minus = true;
            b = readByte();
        }
        if (b < '0' || '9' < b) {
            throw new NumberFormatException();
        }
        while(true){
            if ('0' <= b && b <= '9') {
                n *= 10;
                n += b - '0';
            }else if(b == -1 || !isPrintableChar(b)){
                return minus ? -n : n;
            }else{
                throw new NumberFormatException();
            }
            b = readByte();
        }
    }
    int ni() {
        long nl = nl();
        if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE) throw new NumberFormatException();
        return (int) nl;
    }
    double nd() { 
        return Double.parseDouble(ns());
    }
    BigInteger bi() {
        return sc.nextBigInteger();
    }
    BigDecimal bd() {
        return sc.nextBigDecimal();
    }
    int [] IntArray(int n) {
        final int [] Array = new int [n];
        for(int i = 0 ; i < n ; i ++ ) {
            Array[i] = ni();
        }
        return Array;
    }
    int [][] IntArray(int n , int m) {
        final int [][] Array = new int [n][m];
        for(int i = 0 ; i < n ; i ++ ) {
            Array[i] = IntArray(m);
        }
        return Array;
    }   
    long [] LongArray(int n) {
        final long [] Array = new long [n];
        for(int i = 0 ; i < n ; i ++ ) {
            Array[i] = nl();
        }
        return Array;
    }
    long [][] LongArray(int n , int m) {
        final long [][] Array = new long [n][m];
        for(int i = 0 ; i < n ; i ++ ) {
            Array[i] = LongArray(m);
        }
        return Array;
    }
    String [] StringArray(int n) {
        final String [] Array = new String [n];
        for(int i = 0 ; i < n ; i ++ ) {
            Array[i] = ns();
        }
        return Array;
    }
    char [][] CharArray(int n , int m) {
        final char [][] Array = new char [n][m];
        for(int i = 0 ; i < n ; i ++ ) {
            Array[i] = ns().toCharArray();
        }
        return Array;
    }
}


0