結果
問題 | No.2283 Prohibit Three Consecutive |
ユーザー | 👑 rin204 |
提出日時 | 2024-04-29 21:12:33 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 300 ms / 2,000 ms |
コード長 | 1,271 bytes |
コンパイル時間 | 185 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 78,764 KB |
最終ジャッジ日時 | 2024-11-19 04:48:25 |
合計ジャッジ時間 | 3,174 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
52,224 KB |
testcase_01 | AC | 39 ms
52,608 KB |
testcase_02 | AC | 40 ms
52,352 KB |
testcase_03 | AC | 135 ms
76,392 KB |
testcase_04 | AC | 160 ms
76,420 KB |
testcase_05 | AC | 294 ms
78,764 KB |
testcase_06 | AC | 288 ms
77,744 KB |
testcase_07 | AC | 39 ms
52,224 KB |
testcase_08 | AC | 84 ms
76,032 KB |
testcase_09 | AC | 99 ms
76,544 KB |
testcase_10 | AC | 89 ms
76,032 KB |
testcase_11 | AC | 103 ms
76,252 KB |
testcase_12 | AC | 247 ms
78,448 KB |
testcase_13 | AC | 300 ms
77,664 KB |
ソースコード
def solve(): n = int(input()) S = input() for i in range(2): for j in range(2): dp = [False] * 4 if str(1 - i) == S[0] or str(1 - j) == S[1]: continue dp[2 * i + j] = True for s in S[2:]: ndp = [False] * 4 if s != "1": nex = 0 for ii in range(2): for jj in range(2): if nex == ii == jj: continue ndp[2 * jj + nex] |= dp[2 * ii + jj] if s != "0": nex = 1 for ii in range(2): for jj in range(2): if nex == ii == jj: continue ndp[2 * jj + nex] |= dp[2 * ii + jj] dp = ndp for ii in range(2): for jj in range(2): if ii == jj == i or jj == i == j: continue if dp[2 * ii + jj]: return True return False for _ in range(int(input())): if solve(): print("Yes") else: print("No")