結果

問題 No.2812 Plus Minus Blackboard
ユーザー H20H20
提出日時 2024-08-23 23:34:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 407 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 104,704 KB
最終ジャッジ日時 2024-08-23 23:34:36
合計ジャッジ時間 7,525 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,080 KB
testcase_01 AC 42 ms
52,896 KB
testcase_02 AC 41 ms
53,876 KB
testcase_03 AC 407 ms
104,704 KB
testcase_04 AC 269 ms
98,704 KB
testcase_05 AC 362 ms
104,200 KB
testcase_06 AC 175 ms
80,004 KB
testcase_07 AC 171 ms
78,560 KB
testcase_08 AC 155 ms
78,264 KB
testcase_09 AC 326 ms
98,220 KB
testcase_10 AC 153 ms
77,652 KB
testcase_11 AC 257 ms
95,592 KB
testcase_12 AC 249 ms
90,380 KB
testcase_13 AC 376 ms
104,612 KB
testcase_14 AC 193 ms
82,048 KB
testcase_15 AC 156 ms
78,308 KB
testcase_16 AC 367 ms
101,256 KB
testcase_17 AC 195 ms
82,968 KB
testcase_18 AC 169 ms
79,992 KB
testcase_19 AC 306 ms
102,448 KB
testcase_20 AC 156 ms
78,092 KB
testcase_21 AC 404 ms
104,504 KB
testcase_22 AC 346 ms
101,052 KB
testcase_23 AC 41 ms
53,552 KB
testcase_24 AC 39 ms
52,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N = int(input())
A = list(map(int, input().split()))
P = []
M = []
for a in A:
    if a<0:
        M.append(-a)
    if a>0:
        P.append(a)
heapq.heapify(P)
heapq.heapify(M)
while len(P) and len(M):
    v = heapq.heappop(P)-heapq.heappop(M)
    if v>0:
        heapq.heappush(P,v)
    if v<0:
        heapq.heappush(M,-v)

if len(P)+len(M)>1:
    print('No')
else:
    print('Yes')
0