結果

問題 No.2812 Plus Minus Blackboard
ユーザー aa
提出日時 2024-07-19 21:48:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 485 bytes
コンパイル時間 636 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 104,960 KB
最終ジャッジ日時 2024-07-19 21:49:05
合計ジャッジ時間 21,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 TLE -
testcase_04 AC 763 ms
99,072 KB
testcase_05 TLE -
testcase_06 AC 165 ms
79,360 KB
testcase_07 AC 126 ms
78,080 KB
testcase_08 AC 110 ms
77,184 KB
testcase_09 WA -
testcase_10 AC 105 ms
76,928 KB
testcase_11 AC 681 ms
95,744 KB
testcase_12 WA -
testcase_13 TLE -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 223 ms
83,200 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 122 ms
77,312 KB
testcase_21 TLE -
testcase_22 AC 1,922 ms
100,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n=int(input())
a=list(map(int,input().split()))
b=[]
c=[]
for i in a:
	if i>0:
		b.append(i)
	else:
		c.append(i)
b.sort()
c.sort()
B=len(b)
C=len(c)
while B+C>1:
	if B==0 or C==0:
		print('No')
		exit()
	if B>=C:
		x=b.pop(0)+c.pop(0)
		B-=1;C-=1
		if x>0:
			bisect.insort(b,x)
			B+=1 
		elif x<0:
			bisect.insort(c,x)
			C+=1 
	else:
		x=b.pop(-1)+c.pop(-1)
		B-=1;C-=1
		if x>0:
			bisect.insort(b,x)
			B+=1 
		elif x<0:
			bisect.insort(c,x)
			C+=1 
print('Yes')
0