結果

問題 No.2283 Prohibit Three Consecutive
ユーザー FromBooskaFromBooska
提出日時 2023-08-09 13:40:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 932 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 78,480 KB
最終ジャッジ日時 2024-11-15 09:22:17
合計ジャッジ時間 2,288 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,368 KB
testcase_01 AC 40 ms
51,952 KB
testcase_02 AC 39 ms
52,472 KB
testcase_03 AC 98 ms
78,480 KB
testcase_04 AC 115 ms
78,244 KB
testcase_05 AC 148 ms
76,980 KB
testcase_06 AC 150 ms
77,040 KB
testcase_07 AC 38 ms
52,276 KB
testcase_08 AC 58 ms
66,044 KB
testcase_09 AC 54 ms
66,580 KB
testcase_10 AC 56 ms
66,836 KB
testcase_11 AC 56 ms
67,040 KB
testcase_12 AC 162 ms
77,844 KB
testcase_13 AC 168 ms
76,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 左側から必要な変更を?に行う、次は右側から必要な変更を?に行う
# それで3連続があればアウト

T = int(input())
for t in range(T):
    N = int(input())
    S = list(input())

    # from left
    for i in range(N):
        if S[i] == '?':
            # 1個前2個前双方ともに?のケースに注意
            if S[(i-2)%N] == S[(i-1)%N] == '0':
                S[i] = '1'
            if S[(i-2)%N] == S[(i-1)%N] == '1':
                S[i] = '0'

    # from right
    for i in range(N-1, -1, -1):
        if S[i] == '?':
            if S[(i+2)%N] == S[(i+1)%N] == '0':
                S[i] = '1'
            if S[(i+2)%N] == S[(i+1)%N] == '1':
                S[i] = '0'

    ans = 'Yes'
    for i in range(N):
        if S[(i-2)%N] == S[(i-1)%N] == S[(i)%N] == '0':
            ans = 'No'
        if S[(i-2)%N] == S[(i-1)%N] == S[(i)%N] == '1':
            ans = 'No'

    print(ans)

0