結果
問題 | No.2343 (l+r)/2 |
ユーザー | prussian_coder |
提出日時 | 2023-06-11 08:01:54 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 428 bytes |
コンパイル時間 | 341 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 77,824 KB |
最終ジャッジ日時 | 2024-06-11 00:52:42 |
合計ジャッジ時間 | 2,461 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
51,712 KB |
testcase_01 | AC | 591 ms
76,928 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 54 ms
62,464 KB |
testcase_05 | AC | 46 ms
55,552 KB |
testcase_06 | AC | 45 ms
54,912 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 58 ms
68,608 KB |
testcase_13 | AC | 55 ms
64,896 KB |
testcase_14 | WA | - |
ソースコード
T=int(input()) def solve(): N=int(input()) S=input().split() l=-1 r=-1 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 if l==-1 or r==-1: return False 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()])