結果

問題 No.2812 Plus Minus Blackboard
ユーザー H20H20
提出日時 2024-08-23 23:28:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 402 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 105,100 KB
最終ジャッジ日時 2024-08-23 23:28:44
合計ジャッジ時間 7,779 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,288 KB
testcase_01 AC 40 ms
54,152 KB
testcase_02 AC 38 ms
52,464 KB
testcase_03 AC 361 ms
104,848 KB
testcase_04 AC 266 ms
98,620 KB
testcase_05 AC 355 ms
104,132 KB
testcase_06 AC 188 ms
79,976 KB
testcase_07 AC 166 ms
78,572 KB
testcase_08 AC 157 ms
78,172 KB
testcase_09 AC 322 ms
98,584 KB
testcase_10 AC 147 ms
77,968 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 374 ms
104,888 KB
testcase_14 AC 193 ms
82,048 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 192 ms
83,388 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 328 ms
101,124 KB
testcase_23 AC 36 ms
53,068 KB
testcase_24 AC 36 ms
53,380 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