QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#407314#7728. RamenduoxingyunWA 1ms3648kbC++14251b2024-05-08 15:19:252024-05-08 15:19:25

Judging History

你现在查看的是最新测评结果

  • [2024-05-08 15:19:25]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3648kb
  • [2024-05-08 15:19:25]
  • 提交

answer

#include<iostream>

using namespace std;

int main(){
	
	int n;
	cin >> n;
	int sum = 0;
	for(int i = 0; i < n; i++)
	{
		int x;
		cin >> x;
		sum += x;
	}
	if(sum <= 0) cout << "Yes" << endl;
	else cout << "No" << endl;
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3648kb

input:

3
1 2 -5

output:

Yes

result:

ok YES

Test #2:

score: 0
Accepted
time: 1ms
memory: 3500kb

input:

5
2 -5 2 3 1

output:

No

result:

ok NO

Test #3:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

5
3 -2 1 -1 -1

output:

Yes

result:

ok YES

Test #4:

score: 0
Accepted
time: 0ms
memory: 3608kb

input:

5
-1 100 100 100 100

output:

No

result:

ok NO

Test #5:

score: 0
Accepted
time: 0ms
memory: 3576kb

input:

5
3 -3 2 5 1

output:

No

result:

ok NO

Test #6:

score: 0
Accepted
time: 0ms
memory: 3640kb

input:

10
1 2 3 4 5 -15 100 200 300 100

output:

No

result:

ok NO

Test #7:

score: -100
Wrong Answer
time: 0ms
memory: 3636kb

input:

10
1 2 3 4 5 -14 100 200 300 100

output:

No

result:

wrong answer expected YES, found NO [1st token]