結果

問題 No.2812 Plus Minus Blackboard
ユーザー とりゐとりゐ
提出日時 2024-07-19 21:27:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 102,580 KB
最終ジャッジ日時 2024-07-21 20:26:00
合計ジャッジ時間 2,510 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,984 KB
testcase_01 AC 36 ms
52,288 KB
testcase_02 AC 37 ms
51,908 KB
testcase_03 AC 78 ms
102,312 KB
testcase_04 AC 63 ms
85,124 KB
testcase_05 AC 77 ms
101,512 KB
testcase_06 AC 46 ms
66,876 KB
testcase_07 AC 43 ms
64,832 KB
testcase_08 AC 40 ms
63,932 KB
testcase_09 AC 70 ms
94,120 KB
testcase_10 AC 42 ms
62,920 KB
testcase_11 AC 62 ms
83,176 KB
testcase_12 AC 56 ms
78,496 KB
testcase_13 AC 79 ms
102,580 KB
testcase_14 AC 48 ms
69,720 KB
testcase_15 AC 40 ms
62,580 KB
testcase_16 AC 72 ms
98,452 KB
testcase_17 AC 48 ms
70,620 KB
testcase_18 AC 45 ms
65,824 KB
testcase_19 AC 65 ms
89,440 KB
testcase_20 AC 41 ms
62,544 KB
testcase_21 AC 78 ms
102,500 KB
testcase_22 AC 72 ms
98,236 KB
testcase_23 AC 35 ms
53,352 KB
testcase_24 AC 34 ms
52,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))

s=sum(a)
if s>0:
  if max(a)<s:
    print("No")
    exit()
else:
  if min(a)>s:
    print("No")
    exit()

print("Yes")
0