結果
問題 | No.2343 (l+r)/2 |
ユーザー | prussian_coder |
提出日時 | 2023-06-11 08:00:23 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 379 bytes |
コンパイル時間 | 388 ms |
コンパイル使用メモリ | 82,688 KB |
実行使用メモリ | 75,776 KB |
最終ジャッジ日時 | 2025-01-03 03:44:17 |
合計ジャッジ時間 | 2,032 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,096 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 51 ms
62,848 KB |
testcase_05 | AC | 43 ms
55,680 KB |
testcase_06 | AC | 41 ms
55,424 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 53 ms
68,736 KB |
testcase_13 | AC | 52 ms
64,896 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()])