結果

問題 No.2283 Prohibit Three Consecutive
ユーザー とりゐとりゐ
提出日時 2023-04-28 22:02:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 537 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 81,028 KB
最終ジャッジ日時 2024-11-17 20:59:51
合計ジャッジ時間 1,995 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,564 KB
testcase_01 AC 35 ms
52,408 KB
testcase_02 AC 36 ms
52,896 KB
testcase_03 AC 67 ms
78,180 KB
testcase_04 AC 72 ms
81,028 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 39 ms
53,480 KB
testcase_08 AC 48 ms
66,268 KB
testcase_09 AC 51 ms
75,000 KB
testcase_10 WA -
testcase_11 AC 56 ms
75,840 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
  n=int(input())
  s=list(input())
  inf=10**9
  for i in range(3):
    if s[i]!='1' and s[i-1]!='0':
      t=s[i:]+s[:i]
      dp=[1,inf]
      for j in range(1,n):
        ndp=[inf,inf]
        if t[j]=='0' or t[j]=='?':
          ndp[0]=dp[0]+1
          if dp[1]<3:
            ndp[0]=1
        if t[j]=='1' or t[j]=='?':
          ndp[1]=dp[1]+1
          if dp[0]<3:
            ndp[1]=1
        dp=ndp
      if dp[1]<3:
        print('Yes')
        return
      
  print('No')

for _ in range(int(input())):
  solve()
0