結果
問題 | No.2283 Prohibit Three Consecutive |
ユーザー | Shirotsume |
提出日時 | 2023-04-28 23:33:09 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 503 bytes |
コンパイル時間 | 295 ms |
コンパイル使用メモリ | 82,284 KB |
実行使用メモリ | 77,632 KB |
最終ジャッジ日時 | 2024-11-17 22:24:50 |
合計ジャッジ時間 | 2,399 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
56,800 KB |
testcase_01 | AC | 42 ms
57,160 KB |
testcase_02 | AC | 44 ms
55,660 KB |
testcase_03 | AC | 47 ms
56,872 KB |
testcase_04 | AC | 44 ms
57,728 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 110 ms
66,064 KB |
testcase_09 | AC | 112 ms
65,844 KB |
testcase_10 | AC | 107 ms
66,516 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
import sys from collections import deque, Counter input = lambda: sys.stdin.readline().rstrip() ii = lambda: int(input()) mi = lambda: map(int, input().split()) li = lambda: list(mi()) inf = 2 ** 63 - 1 mod = 998244353 import random def solve(): n = ii() s = input() for i in range(50): x = i s = s[x:] + s[:x] if '000' in s or '111' in s or '00?11' in s or '11?00' in s: print('No') return print('Yes') for _ in range(ii()): solve()