QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#796947#8242. V-DiagramUESTC_DebugSimulator#WA 66ms3852kbC++20656b2024-12-02 12:20:032024-12-02 12:20:05

Judging History

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

  • [2024-12-02 12:20:05]
  • 评测
  • 测评结果:WA
  • 用时:66ms
  • 内存:3852kb
  • [2024-12-02 12:20:03]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define N 300010
#define int long long
int n,a[N],x,p;
double ans;
signed main()
{
	ios::sync_with_stdio(false);
	cin.tie(0);cout.tie(0);
	int T;
	cin>>T;
	while(T--)
	{
		cin>>n;
		x=ans=0;
		for(int i=1;i<=n;i++)
		{
			cin>>a[i];
			x=x+a[i];
		}
		ans=x*1.0/n;
		for(int i=2;i<n;i++)
		{
			if(a[i]<a[i-1]&&a[i]<a[i+1])
			{
				p=i;
				break;
			}
		}
		x=0;
		for(int i=1;i<=p+1;i++)
		{
			x=x+a[i];
		}
		ans=max(ans,x*1.0/n);
		x=0;
		for(int i=p-1;i<=n;i++)
		{
			x=x+a[i];
		}
		ans=max(ans,x*1.0/n);
		cout<<setprecision(20)<<ans<<"\n";
	}
	return 0;
}

詳細信息

Test #1:

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

input:

2
4
8 2 7 10
6
9 6 5 3 4 8

output:

6.75
5.8333333333333330373

result:

ok 2 numbers

Test #2:

score: 0
Accepted
time: 66ms
memory: 3848kb

input:

100000
3
948511478 739365502 813471668
3
881046825 27458122 398507422
3
987554257 399092415 924260278
3
984128569 125199021 716360525
3
529589236 45783262 313507287
3
645443456 85994112 226010681
3
914820717 228360911 572267310
3
418958362 56703604 195276041
3
64461646 26764720 26995581
3
914535039 ...

output:

833782882.66666662693
435670789.66666668653
770302316.66666662693
608562705
296293261.66666668653
319149416.33333331347
571816312.66666662693
223646002.33333334327
39407315.666666664183
383253737.66666668653
734363638.66666662693
779975824.33333337307
490276408.33333331347
574448414
337980292
654961...

result:

ok 100000 numbers

Test #3:

score: -100
Wrong Answer
time: 24ms
memory: 3852kb

input:

10000
4
194123849 79274911 191162487 570110764
86
957917218 915359202 914726017 873273226 867724859 867674150 809652204 805531383 745262007 743835491 727071232 714782071 645394643 639432679 594879540 587173904 583418126 560538589 518721836 469558994 427721766 411582333 404948350 402948978 357228675 ...

output:

258668002.75
499947495.38372093439
495489050.35294115543
511519421.86301368475
472025965.69999998808
543693608.25
543366581.51612901688
254833443.19999998808
395528440.97435897589
502458665.38461536169
564217787.33333337307
479468115.1182795763
466246020.20454543829
551500780.77272725105
537648134.2...

result:

wrong answer 2nd numbers differ - expected: '527118856.7555556', found: '499947495.3837209', error = '0.0515469'