QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#218814#6443. Windblume FestivalkokomiisbestWA 431ms3692kbC++14589b2023-10-18 18:52:432023-10-18 18:52:43

Judging History

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

  • [2023-10-18 18:52:43]
  • 评测
  • 测评结果:WA
  • 用时:431ms
  • 内存:3692kb
  • [2023-10-18 18:52:43]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
void solve(){
    int n;
    cin>>n;
    bool yes=false,no=false;
    long long minx=1e9+1,sum=0;
    for(int i=0;i<n;i++){
        int x;
        cin>>x;
        if(x>=0) yes=true;
        if(x<=0) no=true;
        long long y=abs(x);
        sum+=y;
        minx=min(minx,y);
    }
    if(n==1){
    	cout<<sum<<endl;
    	return;
	}
    if(yes&&no) {
	cout<<sum<<endl;
//	cout<<"\xce\xd2\xca\xc7\xd6\xf7"<<endl;
	}
    else cout<<sum-2*minx<<endl;
}
int main(){
    int t;
    cin>>t;
    while(t--){
        solve();
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

5
4
1 -3 2 -4
11
91 66 73 71 32 83 72 79 84 33 93
12
91 66 73 71 32 83 72 79 84 33 33 93
13
91 66 73 71 32 83 72 79 84 33 33 33 93
1
0

output:

10
713
746
779
0

result:

ok 5 number(s): "10 713 746 779 0"

Test #2:

score: -100
Wrong Answer
time: 431ms
memory: 3692kb

input:

1000000
1
2
1
-2
1
1
1
-1
1
2
1
1
1
2
1
-2
1
-2
1
2
1
1
1
1
1
2
1
2
1
2
1
-2
1
-2
1
0
1
2
1
1
1
-1
1
0
1
-2
1
0
1
1
1
1
1
-2
1
-2
1
2
1
1
1
2
1
1
1
1
1
0
1
2
1
0
1
-1
1
-1
1
-2
1
-2
1
0
1
-2
1
0
1
1
1
-1
1
2
1
0
1
-2
1
-2
1
0
1
1
1
-1
1
-2
1
-1
1
0
1
-1
1
-1
1
-1
1
-1
1
1
1
2
1
0
1
0
1
-2
1
2
1
2
1
...

output:

2
2
1
1
2
1
2
2
2
2
1
1
2
2
2
2
2
0
2
1
1
0
2
0
1
1
2
2
2
1
2
1
1
0
2
0
1
1
2
2
0
2
0
1
1
2
0
2
2
0
1
1
2
1
0
1
1
1
1
1
2
0
0
2
2
2
1
2
2
1
2
1
2
2
1
1
0
2
0
0
0
1
1
2
1
1
0
2
1
2
1
1
0
1
2
2
1
1
0
2
2
2
1
0
1
0
1
0
1
2
2
1
2
2
0
1
1
1
2
2
2
1
1
2
0
2
2
2
1
0
1
0
1
2
2
1
2
1
1
0
1
1
1
0
2
2
1
0
2
0
...

result:

wrong answer 2nd numbers differ - expected: '-2', found: '2'