結果

問題 No.2812 Plus Minus Blackboard
ユーザー 👑 rin204rin204
提出日時 2024-07-19 21:23:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 162 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,472 KB
最終ジャッジ日時 2024-07-19 21:23:04
合計ジャッジ時間 3,532 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,712 KB
testcase_01 AC 32 ms
52,096 KB
testcase_02 AC 33 ms
51,328 KB
testcase_03 WA -
testcase_04 AC 80 ms
85,632 KB
testcase_05 AC 152 ms
102,912 KB
testcase_06 WA -
testcase_07 AC 56 ms
64,000 KB
testcase_08 AC 42 ms
62,616 KB
testcase_09 AC 108 ms
94,464 KB
testcase_10 WA -
testcase_11 AC 70 ms
83,200 KB
testcase_12 AC 61 ms
77,440 KB
testcase_13 AC 105 ms
103,808 KB
testcase_14 AC 53 ms
69,376 KB
testcase_15 AC 41 ms
61,824 KB
testcase_16 AC 100 ms
99,456 KB
testcase_17 WA -
testcase_18 AC 45 ms
65,748 KB
testcase_19 AC 86 ms
90,496 KB
testcase_20 AC 43 ms
61,568 KB
testcase_21 AC 121 ms
103,680 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
A.sort()
tot = sum(A)
for a in A:
    if a * (tot - a) <= 0:
        print("Yes")
        exit()
print("No")
0