結果

問題 No.2812 Plus Minus Blackboard
ユーザー titiatitia
提出日時 2024-07-22 15:09:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 446 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,588 KB
最終ジャッジ日時 2024-07-22 15:10:06
合計ジャッジ時間 6,011 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 36 ms
10,752 KB
testcase_03 AC 439 ms
30,384 KB
testcase_04 AC 266 ms
21,924 KB
testcase_05 AC 398 ms
29,060 KB
testcase_06 AC 86 ms
14,488 KB
testcase_07 AC 70 ms
13,276 KB
testcase_08 AC 61 ms
12,744 KB
testcase_09 AC 371 ms
26,724 KB
testcase_10 AC 56 ms
12,672 KB
testcase_11 AC 229 ms
21,136 KB
testcase_12 AC 175 ms
18,608 KB
testcase_13 AC 415 ms
30,200 KB
testcase_14 AC 115 ms
15,472 KB
testcase_15 AC 53 ms
12,416 KB
testcase_16 AC 401 ms
28,032 KB
testcase_17 AC 115 ms
15,656 KB
testcase_18 AC 82 ms
14,376 KB
testcase_19 AC 301 ms
24,456 KB
testcase_20 AC 54 ms
12,528 KB
testcase_21 AC 446 ms
30,588 KB
testcase_22 AC 363 ms
27,844 KB
testcase_23 AC 25 ms
10,752 KB
testcase_24 AC 24 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

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)
    elif a<0:
        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