結果
問題 | No.2283 Prohibit Three Consecutive |
ユーザー | tassei903 |
提出日時 | 2023-04-29 15:27:52 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,270 bytes |
コンパイル時間 | 692 ms |
コンパイル使用メモリ | 82,036 KB |
実行使用メモリ | 97,964 KB |
最終ジャッジ日時 | 2024-11-18 11:11:58 |
合計ジャッジ時間 | 2,570 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
52,996 KB |
testcase_01 | AC | 34 ms
53,508 KB |
testcase_02 | AC | 34 ms
52,952 KB |
testcase_03 | AC | 90 ms
85,652 KB |
testcase_04 | AC | 116 ms
96,772 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 82 ms
87,208 KB |
testcase_09 | AC | 97 ms
97,964 KB |
testcase_10 | AC | 80 ms
87,448 KB |
testcase_11 | AC | 98 ms
97,784 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
import sys input = lambda :sys.stdin.readline()[:-1] ni = lambda :int(input()) na = lambda :list(map(int,input().split())) yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES") no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO") ####################################################################### def f(x): if x == "0": return [0] elif x == "1": return [1] else: return [0,1] for _ in range(ni()): n = ni() s = input() ok = 0 for a in f(s[0]): for b in f(s[1]): dp = [[0] * 4 for i in range(n-1)] dp[0][a * 2 + b] = 1 for i in range(n-2): for j in range(4): if dp[i][j] ^ 1: continue nj = j % 2 for k in f(s[i+2]): x = j * 2 + k if x in [0,7]:continue dp[i+1][x % 4] = 1 for j in range(4): if (j % 2) + a * 4 + b * 2 in [0, 7]:continue if dp[-1][j]: ok = 1 if ok: break if ok: break if ok: Yes() else: No()