結果

問題 No.2812 Plus Minus Blackboard
ユーザー ra5anchorra5anchor
提出日時 2024-07-20 11:36:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 105,504 KB
最終ジャッジ日時 2024-07-21 20:28:15
合計ジャッジ時間 2,941 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,872 KB
testcase_01 AC 39 ms
52,396 KB
testcase_02 AC 37 ms
52,676 KB
testcase_03 AC 124 ms
105,504 KB
testcase_04 AC 85 ms
86,080 KB
testcase_05 AC 112 ms
103,088 KB
testcase_06 AC 54 ms
66,940 KB
testcase_07 AC 50 ms
65,208 KB
testcase_08 AC 47 ms
64,088 KB
testcase_09 AC 100 ms
95,008 KB
testcase_10 AC 47 ms
62,716 KB
testcase_11 AC 81 ms
84,320 KB
testcase_12 AC 70 ms
78,160 KB
testcase_13 AC 113 ms
104,528 KB
testcase_14 AC 58 ms
69,980 KB
testcase_15 AC 45 ms
63,444 KB
testcase_16 AC 105 ms
99,928 KB
testcase_17 AC 60 ms
70,748 KB
testcase_18 AC 51 ms
66,616 KB
testcase_19 AC 91 ms
90,756 KB
testcase_20 AC 44 ms
62,608 KB
testcase_21 AC 114 ms
103,896 KB
testcase_22 AC 105 ms
98,928 KB
testcase_23 AC 37 ms
52,156 KB
testcase_24 AC 38 ms
51,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
A.sort()
sm = sum(A)
if sm - A[-1] > 0:
    print('No')
    exit()
if sm - A[0] < 0:
    print('No')
    exit()
else:
    print('Yes')
0