結果
問題 | No.2343 (l+r)/2 |
ユーザー | prussian_coder |
提出日時 | 2023-06-11 08:00:23 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 379 bytes |
コンパイル時間 | 418 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 75,008 KB |
最終ジャッジ日時 | 2024-06-11 00:52:39 |
合計ジャッジ時間 | 2,103 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
51,968 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 52 ms
62,592 KB |
testcase_05 | AC | 45 ms
55,808 KB |
testcase_06 | AC | 44 ms
55,424 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 63 ms
68,608 KB |
testcase_13 | AC | 58 ms
64,768 KB |
testcase_14 | WA | - |
ソースコード
T=int(input()) def solve(): N=int(input()) S=input().split() if S[0]!=S[-1]: return True else: for i in range(N-1): if S[i]!=S[i+1]: l=i+1 break for i in reversed(range(N-1)): if S[i+1]!=S[i]: r=i+1 break X="".join(S[l:r]) if "00" in X or "11" in X: return True else: return False for _ in range(T): print(["No","Yes"][solve()])