結果

問題 No.2343 (l+r)/2
ユーザー とりゐとりゐ
提出日時 2023-06-09 23:30:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 84,608 KB
最終ジャッジ日時 2024-06-10 14:37:24
合計ジャッジ時間 2,502 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 511 ms
76,800 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 54 ms
74,368 KB
testcase_05 AC 43 ms
64,000 KB
testcase_06 AC 43 ms
62,336 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 45 ms
63,488 KB
testcase_11 AC 59 ms
79,488 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 63 ms
84,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n,a):
  if a[0]!=a[-1]:
    return True
  for i in range(n-1):
    if a[i]==a[i+1]==1-a[0]:
      return True
  return False

for _ in range(int(input())):
  n=int(input())
  a=list(map(int,input().split()))
  if solve(n,a):
    print('Yes')
  else:
    print('No')
0