結果

問題 No.2343 (l+r)/2
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-11-15 05:29:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 570 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 84,804 KB
最終ジャッジ日時 2024-11-15 05:29:17
合計ジャッジ時間 2,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,616 KB
testcase_01 AC 570 ms
76,656 KB
testcase_02 AC 84 ms
74,632 KB
testcase_03 AC 161 ms
77,228 KB
testcase_04 AC 46 ms
62,772 KB
testcase_05 AC 40 ms
56,528 KB
testcase_06 AC 40 ms
56,188 KB
testcase_07 AC 54 ms
76,100 KB
testcase_08 AC 59 ms
75,616 KB
testcase_09 AC 60 ms
75,632 KB
testcase_10 AC 45 ms
64,416 KB
testcase_11 AC 57 ms
79,708 KB
testcase_12 AC 54 ms
76,212 KB
testcase_13 AC 49 ms
70,436 KB
testcase_14 AC 63 ms
84,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
for _ in range(t):
  _=input()
  a=''.join(input().split())
  res='Yes'
  if a[0]==a[-1]:
    aa=['11','00'][int(a[0])]
    if aa not in a:
      b=[]
      p=3
      for ai in a:
        if ai!=p: b.append(ai)
        p=b[-1]
      if len(b)<=8:
        res='No'
  print(res)
0