結果

問題 No.2343 (l+r)/2
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-11-15 05:03:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 190 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-11-15 05:03:43
合計ジャッジ時間 2,338 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 613 ms
76,672 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 47 ms
61,952 KB
testcase_05 AC 50 ms
55,680 KB
testcase_06 AC 41 ms
55,040 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 46 ms
61,952 KB
testcase_13 AC 45 ms
58,112 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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