結果

問題 No.2812 Plus Minus Blackboard
ユーザー ニックネームニックネーム
提出日時 2024-07-19 21:53:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 283 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,728 KB
最終ジャッジ日時 2024-07-21 20:27:18
合計ジャッジ時間 3,171 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 171 ms
30,728 KB
testcase_04 AC 108 ms
22,036 KB
testcase_05 AC 155 ms
30,432 KB
testcase_06 AC 51 ms
13,984 KB
testcase_07 AC 45 ms
13,156 KB
testcase_08 AC 41 ms
12,836 KB
testcase_09 AC 139 ms
27,588 KB
testcase_10 AC 37 ms
12,544 KB
testcase_11 AC 99 ms
21,472 KB
testcase_12 AC 78 ms
18,840 KB
testcase_13 AC 163 ms
30,424 KB
testcase_14 AC 59 ms
15,952 KB
testcase_15 AC 36 ms
12,416 KB
testcase_16 AC 148 ms
28,120 KB
testcase_17 AC 59 ms
15,752 KB
testcase_18 AC 47 ms
14,040 KB
testcase_19 AC 120 ms
25,440 KB
testcase_20 AC 38 ms
12,416 KB
testcase_21 AC 162 ms
30,248 KB
testcase_22 AC 142 ms
28,588 KB
testcase_23 AC 28 ms
10,624 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input()); p = []; q = []
for v in map(int,input().split()):
    if v>0: p.append(v)
    elif v<0: q.append(-v)
if n==1: exit(print("Yes"))
if not p or not q: exit(print("No"))
p.sort(); q.sort(); r = sum(p); s = sum(q)
print("Yes" if s-q[-1]<=r<=s or r-p[-1]<=s<=r else "No")
0