結果

問題 No.2812 Plus Minus Blackboard
ユーザー detteiuudetteiuu
提出日時 2024-07-19 21:41:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 102,752 KB
最終ジャッジ日時 2024-07-21 20:26:43
合計ジャッジ時間 2,875 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,688 KB
testcase_01 AC 38 ms
52,468 KB
testcase_02 AC 38 ms
53,028 KB
testcase_03 AC 85 ms
102,560 KB
testcase_04 AC 68 ms
85,604 KB
testcase_05 AC 82 ms
101,160 KB
testcase_06 AC 49 ms
66,400 KB
testcase_07 AC 48 ms
65,732 KB
testcase_08 AC 47 ms
63,032 KB
testcase_09 AC 76 ms
95,664 KB
testcase_10 AC 46 ms
63,608 KB
testcase_11 AC 65 ms
82,380 KB
testcase_12 AC 60 ms
77,824 KB
testcase_13 AC 84 ms
102,752 KB
testcase_14 AC 54 ms
69,376 KB
testcase_15 AC 47 ms
61,952 KB
testcase_16 AC 83 ms
97,868 KB
testcase_17 AC 56 ms
70,144 KB
testcase_18 AC 51 ms
65,280 KB
testcase_19 AC 75 ms
89,344 KB
testcase_20 AC 48 ms
62,208 KB
testcase_21 AC 87 ms
102,152 KB
testcase_22 AC 82 ms
97,280 KB
testcase_23 AC 40 ms
51,712 KB
testcase_24 AC 40 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

SUM = sum(A)
if SUM == 0:
    print("Yes")
elif SUM > 0 and max(A) >= SUM:
    print("Yes")
elif SUM < 0 and min(A) <= SUM:
    print("Yes")
else:
    print("No")
0