Wrong Answer
Code
#include <bits/stdc++.h>
using namespace std;
int main()
{
int tst;
cin>>tst;
while(tst--)
{
long long int x,sum=0,prod;
cin>>x;
long long int y[x];
for(int i=0;i<x;i++)
{
cin>>y[i];
prod=y[i]*2;
sum+=prod;
}
cout<<sum<<endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1152 Special Array
- Contest
- Happy New Year 2025
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2025-01-02 15:06:27
- Judged At
- 2025-01-02 15:06:27
- Judged By
- Score
- 1
- Total Time
- 41ms
- Peak Memory
- 556.0 KiB