結果

問題 No.2283 Prohibit Three Consecutive
ユーザー Alex WiceAlex Wice
提出日時 2023-04-28 22:43:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-11-17 21:39:22
合計ジャッジ時間 1,739 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,968 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 58 ms
74,624 KB
testcase_04 AC 67 ms
77,696 KB
testcase_05 AC 144 ms
77,168 KB
testcase_06 AC 144 ms
77,248 KB
testcase_07 AC 34 ms
52,096 KB
testcase_08 AC 44 ms
64,000 KB
testcase_09 AC 43 ms
64,640 KB
testcase_10 AC 44 ms
66,944 KB
testcase_11 AC 42 ms
66,560 KB
testcase_12 AC 141 ms
77,296 KB
testcase_13 AC 170 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, s):
    if n <= 2:
        return True
    s = list(s)
    for i in range(n):
        if s[i] == "?":
            if s[(i - 1) % n] == s[(i - 2) % n] != "?":
                s[i] = str(int(s[i - 1]) ^ 1)
    for i in range(n - 1, -1, -1):
        if s[i] == "?":
            if s[(i + 1) % n] == s[(i + 2) % n] != "?":
                s[i] = str(int(s[(i + 1) % n]) ^ 1)
    s = "".join(s)
    t = s + s
    return "111" not in t and "000" not in t
    
for tc in range(int(input())):
	print("Yes" if solve(int(input()), input()) else "No")
0