結果

問題 No.2812 Plus Minus Blackboard
ユーザー セックセック
提出日時 2024-07-21 20:57:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 107,552 KB
最終ジャッジ日時 2024-07-21 20:57:39
合計ジャッジ時間 3,709 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,204 KB
testcase_01 AC 38 ms
52,356 KB
testcase_02 AC 38 ms
53,100 KB
testcase_03 AC 166 ms
106,648 KB
testcase_04 AC 120 ms
100,256 KB
testcase_05 AC 156 ms
106,844 KB
testcase_06 AC 81 ms
73,324 KB
testcase_07 AC 60 ms
70,240 KB
testcase_08 AC 57 ms
69,320 KB
testcase_09 AC 143 ms
100,384 KB
testcase_10 AC 57 ms
68,988 KB
testcase_11 AC 114 ms
98,212 KB
testcase_12 AC 95 ms
89,308 KB
testcase_13 AC 166 ms
107,248 KB
testcase_14 AC 74 ms
77,736 KB
testcase_15 AC 58 ms
67,572 KB
testcase_16 AC 153 ms
103,672 KB
testcase_17 AC 92 ms
78,636 KB
testcase_18 AC 66 ms
73,332 KB
testcase_19 AC 133 ms
104,020 KB
testcase_20 AC 59 ms
68,844 KB
testcase_21 AC 166 ms
107,552 KB
testcase_22 AC 152 ms
103,692 KB
testcase_23 AC 40 ms
52,016 KB
testcase_24 AC 38 ms
53,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a = list(map(int, input().split()))
tmp=sorted(a)
if tmp[0]==0 and tmp[-1]==0:
    print("Yes")
    exit()

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