結果
問題 | No.2283 Prohibit Three Consecutive |
ユーザー | とりゐ |
提出日時 | 2023-04-28 22:23:23 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 732 bytes |
コンパイル時間 | 391 ms |
コンパイル使用メモリ | 82,784 KB |
実行使用メモリ | 96,196 KB |
最終ジャッジ日時 | 2024-11-17 21:18:50 |
合計ジャッジ時間 | 2,670 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 99 ms
93,504 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 57 ms
73,532 KB |
testcase_09 | AC | 74 ms
90,328 KB |
testcase_10 | AC | 76 ms
87,388 KB |
testcase_11 | AC | 75 ms
90,040 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
def is_ok(n,s): inf=10**9 for i in range(3): if s[i]!='0' and s[i-1]!='1': 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: return True return False def solve(): n=int(input()) s=list(input()) s2=[] for i in s: if i=='0': s2.append('1') elif i=='1': s2.append('0') else: s2.append('?') if is_ok(n,s) or is_ok(n,s2): print('Yes') else: print('No') for _ in range(int(input())): solve()