結果

問題 No.2812 Plus Minus Blackboard
ユーザー rlangevinrlangevin
提出日時 2024-07-19 21:28:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 382 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 104,956 KB
最終ジャッジ日時 2024-07-19 21:28:31
合計ジャッジ時間 3,205 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,888 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 WA -
testcase_04 AC 103 ms
96,000 KB
testcase_05 AC 131 ms
104,192 KB
testcase_06 WA -
testcase_07 AC 58 ms
67,968 KB
testcase_08 AC 55 ms
65,896 KB
testcase_09 AC 117 ms
97,792 KB
testcase_10 WA -
testcase_11 AC 91 ms
91,904 KB
testcase_12 AC 75 ms
85,504 KB
testcase_13 AC 138 ms
103,936 KB
testcase_14 AC 65 ms
74,240 KB
testcase_15 AC 47 ms
64,128 KB
testcase_16 AC 126 ms
100,992 KB
testcase_17 WA -
testcase_18 AC 60 ms
69,632 KB
testcase_19 AC 111 ms
102,732 KB
testcase_20 AC 57 ms
65,024 KB
testcase_21 AC 129 ms
104,204 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
p, m = [], []
for a in A:
    if a > 0:
        p.append(a)
    elif a < 0:
        m.append(-a)
        
if len(p) + len(m) == 1:
    print("Yes")
    exit()
if len(p) == 0 or len(m) == 0:
    print("No")
    exit()
    
p.sort()
m.sort()
if sum(p[:-1]) <= sum(m) or sum(m[:-1]) <= sum(p):
    print("Yes")
else:
    print("No")
0