結果

問題 No.2812 Plus Minus Blackboard
ユーザー ShirotsumeShirotsume
提出日時 2024-07-19 22:37:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 100,800 KB
最終ジャッジ日時 2024-07-21 20:28:01
合計ジャッジ時間 5,624 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,472 KB
testcase_01 AC 46 ms
56,008 KB
testcase_02 AC 43 ms
56,028 KB
testcase_03 AC 301 ms
100,396 KB
testcase_04 AC 214 ms
94,692 KB
testcase_05 AC 303 ms
100,268 KB
testcase_06 AC 129 ms
80,816 KB
testcase_07 AC 128 ms
79,424 KB
testcase_08 AC 114 ms
78,816 KB
testcase_09 AC 261 ms
98,896 KB
testcase_10 AC 124 ms
78,744 KB
testcase_11 AC 214 ms
92,516 KB
testcase_12 AC 176 ms
88,604 KB
testcase_13 AC 314 ms
100,800 KB
testcase_14 AC 160 ms
82,292 KB
testcase_15 AC 110 ms
78,404 KB
testcase_16 AC 293 ms
98,416 KB
testcase_17 AC 149 ms
83,104 KB
testcase_18 AC 128 ms
80,596 KB
testcase_19 AC 242 ms
97,112 KB
testcase_20 AC 125 ms
78,376 KB
testcase_21 AC 297 ms
100,424 KB
testcase_22 AC 291 ms
97,804 KB
testcase_23 AC 40 ms
55,776 KB
testcase_24 AC 42 ms
56,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353
from heapq import heappop, heappush
n = ii()
a = li()
t = []
a.sort()
for v in a:
    heappush(t, -v)
    while len(t) >= 2 and t[0] * t[1] <= 0:
        x = heappop(t)
        y = heappop(t)
        heappush(t, x + y)

print('Yes' if len(t) == 1 else 'No')
0