結果

問題 No.2343 (l+r)/2
ユーザー rotti_coderrotti_coder
提出日時 2023-06-09 21:14:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 454 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 95,096 KB
最終ジャッジ日時 2024-06-10 12:43:23
合計ジャッジ時間 2,898 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 736 ms
77,420 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(n):
  t = int(input())
  a = list(map(int,input().split()))
  if sum(a) == t//2 and t % 2 == 0:
    print("Yes")
    continue
  mae = -1
  if sum(a) < t//2:
    mokuteki = 0
  else:
    mokuteki = 1
  count = 0
  for ipp in range(t):
    if a[ipp] == mae and a[ipp] == mokuteki:
      count += 1
      print(count)
    else:
      mae = a[ipp]
  if abs((t-sum(a))-sum(a)) <= count:
    print("Yes")
  else:
    print("No")
0