QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#537320#5304. Money GameSound_MediumWA 1ms4008kbC++23571b2024-08-30 09:59:412024-08-30 09:59:41

Judging History

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

  • [2024-08-30 09:59:41]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:4008kb
  • [2024-08-30 09:59:41]
  • 提交

answer

#include <bits/stdc++.h>
#define int long long
using namespace std;
int n, m;

void solve () {
    cin>>n;
    vector<double>a(n);
    for(auto &v:a)cin>>v;
    int cnt=0;
    while(cnt<100){
        for(int i=0;i<n;i++){
            a[i]/=2;
            a[(i+1)%n]+=a[i];
        }
        
        cnt++;
    }for(int i=0;i<n;i++){
           printf("%.10lf ",a[i]);
        }cout<<endl;
}
signed main () {
    int T = 1; 
    std::ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
    //cin>>T;
    while (T --) solve ();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

2
4 2

output:


4.0000000000 2.0000000000 

result:

ok 2 numbers

Test #2:

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

input:

2
2 3

output:


3.3333333333 1.6666666667 

result:

ok 2 numbers

Test #3:

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

input:

2
851648 722281

output:


1049286.0000000000 524643.0000000000 

result:

ok 2 numbers

Test #4:

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

input:

3
450762 114467 367746

output:


466487.5000000000 233243.7500000000 233243.7500000000 

result:

ok 3 numbers

Test #5:

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

input:

4
2 3 5 1

output:


4.4000000000 2.2000000000 2.2000000000 2.2000000000 

result:

ok 4 numbers

Test #6:

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

input:

5
616288 155735 783782 648639 349827

output:


851423.6666666670 425711.8333333334 425711.8333333334 425711.8333333334 425711.8333333335 

result:

ok 5 numbers

Test #7:

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

input:

6
1 2 5 5 1 2

output:


4.5714285714 2.2857142857 2.2857142857 2.2857142857 2.2857142857 2.2857142857 

result:

ok 6 numbers

Test #8:

score: -100
Wrong Answer
time: 1ms
memory: 3972kb

input:

100
283397 377774 494372 487546 143741 314831 934818 229251 78798 395137 407818 18761 516178 734330 838264 433107 858247 174903 905002 445936 58127 253493 844807 215023 37167 11961 885588 176935 156947 82314 21120 373809 226377 712113 302554 613417 368577 604224 811349 182256 179860 424904 544075 16...

output:


850548.1413880605 421043.3986574783 419128.4337265725 417294.0676308292 415527.2993709190 413814.8963520378 412144.0759570312 410503.1281806682 408881.9558030471 407272.5133332900 405669.1314252157 404068.7193373623 402470.8439559959 400877.6896098630 399293.9080986297 397726.3727981029 396183.8542...

result:

wrong answer 1st numbers differ - expected: '848873.9009901', found: '850548.1413881', error = '0.0019723'