結果

問題 No.2343 (l+r)/2
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-11-15 04:39:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 176 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 77,232 KB
最終ジャッジ日時 2024-11-15 04:39:18
合計ジャッジ時間 2,478 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 587 ms
77,056 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 49 ms
62,464 KB
testcase_05 AC 43 ms
55,424 KB
testcase_06 AC 43 ms
54,784 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 42 ms
54,784 KB
testcase_11 AC 53 ms
64,640 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 56 ms
67,968 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: res='No'
  print(res)
0