結果

問題 No.2812 Plus Minus Blackboard
ユーザー titiatitia
提出日時 2024-07-22 15:08:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 431 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,804 KB
最終ジャッジ日時 2024-07-22 15:08:47
合計ジャッジ時間 5,915 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 458 ms
30,804 KB
testcase_04 AC 252 ms
22,012 KB
testcase_05 AC 450 ms
29,176 KB
testcase_06 AC 88 ms
14,484 KB
testcase_07 AC 70 ms
13,268 KB
testcase_08 AC 61 ms
12,928 KB
testcase_09 AC 375 ms
26,584 KB
testcase_10 AC 57 ms
12,416 KB
testcase_11 AC 229 ms
21,128 KB
testcase_12 AC 175 ms
18,600 KB
testcase_13 AC 472 ms
30,504 KB
testcase_14 AC 113 ms
15,592 KB
testcase_15 AC 53 ms
12,392 KB
testcase_16 AC 376 ms
28,404 KB
testcase_17 AC 116 ms
15,516 KB
testcase_18 AC 86 ms
14,244 KB
testcase_19 AC 321 ms
24,440 KB
testcase_20 AC 57 ms
12,416 KB
testcase_21 AC 426 ms
30,452 KB
testcase_22 AC 380 ms
27,836 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from heapq import heappop,heappush

N=int(input())
A=list(map(int,input().split()))


P=[]
M=[]

for a in A:
    if a>0:
        P.append(a)
    else:
        M.append(-a)

P.sort()
M.sort()
while P and M:
    x=heappop(P)
    y=heappop(M)

    k=x-y

    if k>0:
        heappush(P,k)
    elif k<0:
        heappush(M,-k)
        
if len(P)+len(M)<=1:
    print("Yes")
else:
    print("No")
0