結果

問題 No.2812 Plus Minus Blackboard
ユーザー 寝癖寝癖
提出日時 2024-07-20 12:30:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 105,468 KB
最終ジャッジ日時 2024-07-21 20:28:18
合計ジャッジ時間 3,010 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,572 KB
testcase_01 AC 39 ms
52,940 KB
testcase_02 AC 38 ms
51,756 KB
testcase_03 AC 120 ms
105,468 KB
testcase_04 AC 84 ms
86,748 KB
testcase_05 AC 111 ms
103,220 KB
testcase_06 AC 52 ms
66,780 KB
testcase_07 AC 49 ms
64,556 KB
testcase_08 AC 48 ms
63,136 KB
testcase_09 AC 100 ms
96,460 KB
testcase_10 AC 47 ms
63,072 KB
testcase_11 AC 81 ms
84,564 KB
testcase_12 AC 71 ms
79,400 KB
testcase_13 AC 115 ms
104,240 KB
testcase_14 AC 58 ms
69,380 KB
testcase_15 AC 46 ms
63,236 KB
testcase_16 AC 106 ms
99,768 KB
testcase_17 AC 59 ms
70,444 KB
testcase_18 AC 54 ms
67,252 KB
testcase_19 AC 91 ms
92,296 KB
testcase_20 AC 45 ms
62,128 KB
testcase_21 AC 113 ms
104,048 KB
testcase_22 AC 105 ms
98,828 KB
testcase_23 AC 38 ms
53,404 KB
testcase_24 AC 38 ms
52,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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