結果

問題 No.2812 Plus Minus Blackboard
ユーザー moon17moon17
提出日時 2024-07-19 22:36:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 111,488 KB
最終ジャッジ日時 2024-07-21 20:28:05
合計ジャッジ時間 6,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,608 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 364 ms
111,488 KB
testcase_04 AC 262 ms
96,128 KB
testcase_05 AC 362 ms
110,464 KB
testcase_06 AC 167 ms
80,364 KB
testcase_07 AC 162 ms
78,848 KB
testcase_08 AC 155 ms
78,080 KB
testcase_09 AC 317 ms
103,168 KB
testcase_10 AC 148 ms
77,680 KB
testcase_11 AC 248 ms
93,696 KB
testcase_12 AC 220 ms
89,728 KB
testcase_13 AC 376 ms
111,328 KB
testcase_14 AC 186 ms
82,696 KB
testcase_15 AC 150 ms
77,588 KB
testcase_16 AC 351 ms
106,624 KB
testcase_17 AC 188 ms
83,584 KB
testcase_18 AC 168 ms
80,256 KB
testcase_19 AC 295 ms
100,084 KB
testcase_20 AC 150 ms
77,184 KB
testcase_21 AC 373 ms
110,976 KB
testcase_22 AC 344 ms
106,708 KB
testcase_23 AC 42 ms
52,480 KB
testcase_24 AC 43 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import*
n,*a=map(int,open(0).read().split())
p=[]
q=[]
for i in a:
  if 0<=i:
    heappush(p,i)
  else:
    heappush(q,-i)
while (p and q)or(len(p)>1 and p[0]==0):
  # print(p,q)
  if q:
    i,j=heappop(p),-heappop(q)
  else:
    i,j=heappop(p),heappop(p)
  # print(i,j)
  nxt=i+j
  if nxt>=0:
    heappush(p,nxt)
  else:
    heappush(q,-nxt)
if len(p)+len(q)==1:
  print('Yes')
else:
  print('No')
0