結果

問題 No.2812 Plus Minus Blackboard
ユーザー ああいいああいい
提出日時 2024-07-20 20:15:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 104,556 KB
最終ジャッジ日時 2024-07-21 20:28:31
合計ジャッジ時間 3,039 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,280 KB
testcase_01 AC 34 ms
52,848 KB
testcase_02 AC 37 ms
53,812 KB
testcase_03 AC 133 ms
104,556 KB
testcase_04 AC 93 ms
100,288 KB
testcase_05 AC 120 ms
104,356 KB
testcase_06 AC 55 ms
72,704 KB
testcase_07 AC 51 ms
70,148 KB
testcase_08 AC 50 ms
67,604 KB
testcase_09 AC 112 ms
98,240 KB
testcase_10 AC 50 ms
67,900 KB
testcase_11 AC 92 ms
96,608 KB
testcase_12 AC 76 ms
88,232 KB
testcase_13 AC 124 ms
104,484 KB
testcase_14 AC 62 ms
76,808 KB
testcase_15 AC 50 ms
67,076 KB
testcase_16 AC 116 ms
101,092 KB
testcase_17 AC 64 ms
78,132 KB
testcase_18 AC 55 ms
72,040 KB
testcase_19 AC 101 ms
102,600 KB
testcase_20 AC 50 ms
66,756 KB
testcase_21 AC 127 ms
104,476 KB
testcase_22 AC 115 ms
101,188 KB
testcase_23 AC 35 ms
52,624 KB
testcase_24 AC 34 ms
51,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
m = []
p = []
for a in A:
	if a > 0:
		p.append(a)
	elif a < 0:
		m.append(a)
p.sort(reverse = True)
m.sort()

while True:
	if not m:
		if len(p) > 1:
			print('No')
		else:
			print('Yes')
		exit()
	if not p:
		if len(m) > 1:
			print('No')
		else:
			print('Yes')
		exit()
	u = m.pop()
	v = p.pop()
	if u + v > 0:
		p.append(u + v)
	elif u + v < 0:
		m.append(u + v)
		
0