結果

問題 No.2343 (l+r)/2
ユーザー sepa38sepa38
提出日時 2023-06-09 21:16:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 85,376 KB
最終ジャッジ日時 2024-06-10 12:45:06
合計ジャッジ時間 2,562 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 546 ms
77,536 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 60 ms
77,056 KB
testcase_05 AC 49 ms
66,688 KB
testcase_06 AC 51 ms
65,792 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 47 ms
64,256 KB
testcase_11 AC 61 ms
80,128 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 68 ms
85,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
  n = int(input())
  a = list(map(int, input().split()))
  o = sum(a)
  k = o - (n - o)
  for i in range(n-1):
    if a[i] != a[i+1]:
      continue
    if a[i]:
      if k > 0:
        k -= 1
    else:
      if k < 0:
        k += 1
  print("No" if k else "Yes")
0