結果

問題 No.2283 Prohibit Three Consecutive
ユーザー ntudantuda
提出日時 2023-04-29 11:26:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 773 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 81,656 KB
実行使用メモリ 77,364 KB
最終ジャッジ日時 2024-11-18 09:17:13
合計ジャッジ時間 2,223 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,992 KB
testcase_01 AC 40 ms
52,128 KB
testcase_02 AC 38 ms
53,216 KB
testcase_03 AC 45 ms
62,908 KB
testcase_04 AC 48 ms
69,360 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 59 ms
66,728 KB
testcase_09 AC 56 ms
66,488 KB
testcase_10 AC 59 ms
68,956 KB
testcase_11 AC 52 ms
65,788 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())


def repl(s):
    if s == "0":
        return "1"
    else:
        return "0"


def solve():
    N = int(input())
    S = list(input())
    for i in range(N):
        if S[(i - 2) % N] == S[(i - 1) % N] == S[i] != "?":
            print("No")
            #print(S)
            return
        if S[i] == "?":
            if S[(i - 2) % N] == S[(i - 1) % N] != "?":
                S[i] = repl(S[(i - 1) % N])
    for i in reversed(range(N)):
        if S[(i + 2) % N] == S[(i + 1) % N] == S[i] != "?":
            print("No")
            #print(S)
            return
        if S[i] == "?":
            if S[(i + 2) % N] == S[(i + 1) % N] != "?":
                S[i] = repl(S[(i + 1) % N])
    print("Yes")
    #print(S)


for _ in range(T):
    solve()
0