結果

問題 No.2812 Plus Minus Blackboard
ユーザー セックセック
提出日時 2024-07-21 20:54:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 440 bytes
コンパイル時間 707 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 104,420 KB
最終ジャッジ日時 2024-07-21 20:55:05
合計ジャッジ時間 3,922 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 142 ms
104,320 KB
testcase_04 AC 104 ms
99,968 KB
testcase_05 AC 131 ms
104,140 KB
testcase_06 AC 63 ms
72,448 KB
testcase_07 AC 57 ms
69,504 KB
testcase_08 AC 55 ms
67,584 KB
testcase_09 AC 119 ms
98,432 KB
testcase_10 AC 64 ms
67,328 KB
testcase_11 AC 98 ms
96,640 KB
testcase_12 AC 83 ms
87,796 KB
testcase_13 AC 138 ms
104,420 KB
testcase_14 AC 67 ms
76,160 KB
testcase_15 AC 54 ms
66,048 KB
testcase_16 AC 125 ms
100,960 KB
testcase_17 AC 68 ms
77,568 KB
testcase_18 AC 64 ms
71,936 KB
testcase_19 AC 113 ms
102,224 KB
testcase_20 AC 56 ms
66,944 KB
testcase_21 AC 146 ms
104,064 KB
testcase_22 AC 122 ms
100,780 KB
testcase_23 AC 39 ms
51,968 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a = list(map(int, input().split()))
#a.sort()
mns=[]
pls=[]
for i in range(n):
    if a[i] <0:
        mns.append(a[i])
    else:
        pls.append(a[i])
mns.sort()
pls.sort(reverse=True)
while len(mns)>0 and len(pls)>0:
    mval=mns.pop()
    pval=pls.pop()
    if pval+mval>0:
        pls.append(pval+mval)
    elif pval+mval<0:
        mns.append(pval+mval)
if len(mns)+len(pls)==1:
    print("Yes")
else:
    print("No")
0