結果

問題 No.2812 Plus Minus Blackboard
ユーザー miho-4miho-4
提出日時 2024-07-19 21:49:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 104,192 KB
最終ジャッジ日時 2024-07-21 20:26:57
合計ジャッジ時間 2,976 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 93 ms
104,168 KB
testcase_04 AC 72 ms
86,272 KB
testcase_05 AC 87 ms
102,912 KB
testcase_06 AC 51 ms
66,688 KB
testcase_07 AC 49 ms
65,464 KB
testcase_08 AC 48 ms
63,896 KB
testcase_09 AC 81 ms
95,104 KB
testcase_10 AC 53 ms
63,232 KB
testcase_11 AC 87 ms
83,584 KB
testcase_12 AC 70 ms
77,952 KB
testcase_13 AC 105 ms
104,192 KB
testcase_14 AC 62 ms
69,504 KB
testcase_15 AC 54 ms
62,720 KB
testcase_16 AC 95 ms
98,432 KB
testcase_17 AC 69 ms
70,912 KB
testcase_18 AC 58 ms
66,688 KB
testcase_19 AC 86 ms
90,496 KB
testcase_20 AC 53 ms
62,976 KB
testcase_21 AC 105 ms
103,936 KB
testcase_22 AC 96 ms
98,560 KB
testcase_23 AC 41 ms
51,840 KB
testcase_24 AC 42 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
L=list(map(int,input().split()))
p,m=0,0
for e in L:
  if e<0:
    m+=e
  else:
    p+=e

tot=m+p

ans="No"
if tot==0:
  ans="Yes"
if 0<tot:
  if tot<max(L):
    ans="Yes"
if tot<0:
  if min(L)<tot:
    ans="Yes"
print(ans)
0