結果

問題 No.2283 Prohibit Three Consecutive
ユーザー okapinokapin
提出日時 2023-04-28 22:00:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 616 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 86,140 KB
最終ジャッジ日時 2024-11-17 20:59:14
合計ジャッジ時間 2,448 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,584 KB
testcase_01 AC 32 ms
52,096 KB
testcase_02 AC 32 ms
52,224 KB
testcase_03 AC 168 ms
86,140 KB
testcase_04 AC 164 ms
84,292 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 87 ms
85,236 KB
testcase_09 AC 92 ms
85,200 KB
testcase_10 AC 97 ms
85,168 KB
testcase_11 AC 98 ms
85,140 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n = int(input())
    s = list(input())

    if len(s)>3:
        for i in range(n):
            if s[i%n:(i+3)%n]==['0','0','?']:
                s[((i+2)%n)]='1'
            if s[i%n:(i+3)%n]==['1','1','?']:
                s[((i+2)%n)]='0'
        r = s[::-1]
        for i in range(n):
            if r[i%n:(i+3)%n]==['0','0','?']:
                r[((i+2)%n)]='1'
            if r[i%n:(i+3)%n]==['1','1','?']:
                r[((i+2)%n)]='0'
    else:
        r = s
    if '000' in ''.join(r+r) or '111' in ''.join(r+r):
        print('No')
    else:
        print('Yes')
0