QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#497596#6443. Windblume FestivalzmrzmrWA 439ms3704kbC++14458b2024-07-29 14:39:222024-07-29 14:39:22

Judging History

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

  • [2024-07-29 14:39:22]
  • 评测
  • 测评结果:WA
  • 用时:439ms
  • 内存:3704kb
  • [2024-07-29 14:39:22]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define ll long long

const int N = 1e6+5;
ll a[N];
int main()
{
	int tcase;
	cin>>tcase;
	while(tcase--)
	{
		ll ans = 0 ;
		ll ans1 = 0;
		int n;
		cin>>n;
		int cnt;
		for(int i = 1 ; i <= n ; i++ )
		{
			cin>>a[i];
			ans+=abs(a[i]);
		}
		for(int i = 1 ; i <= n ; i++ )
		{
			ans1 = max(ans1 , ans - abs(a[i]) - abs(a[i%n+1]) + (a[i] - a[i%n+1]));
		}
		cout<<ans1<<endl;
	}
 } 

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 439ms
memory: 3628kb

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:

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
...

result:

wrong answer 1st numbers differ - expected: '2', found: '0'