結果

問題 No.2812 Plus Minus Blackboard
ユーザー ああいいああいい
提出日時 2024-07-20 19:53:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 242 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 104,448 KB
最終ジャッジ日時 2024-07-20 19:53:51
合計ジャッジ時間 3,520 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,456 KB
testcase_01 AC 46 ms
51,840 KB
testcase_02 WA -
testcase_03 AC 116 ms
104,064 KB
testcase_04 AC 90 ms
85,632 KB
testcase_05 AC 109 ms
102,528 KB
testcase_06 AC 67 ms
66,816 KB
testcase_07 WA -
testcase_08 AC 57 ms
64,000 KB
testcase_09 AC 98 ms
94,592 KB
testcase_10 AC 62 ms
63,488 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 71 ms
70,912 KB
testcase_18 AC 67 ms
66,560 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 109 ms
104,320 KB
testcase_22 AC 101 ms
98,432 KB
testcase_23 AC 47 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
m = 0
M = 0
p = 0
P = 0
for a in A:
	if a > 0:
		p += 1
		P += a
	elif a < 0:
		m += 1
		M += a
if -M >= P and m <= p:
	print('Yes')
elif -M <= P and m >= p:
	print('Yes')
else:
	print('No')
0