QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#207844 | #6443. Windblume Festival | Ycfhnnd | WA | 119ms | 3680kb | C++17 | 820b | 2023-10-08 21:26:59 | 2023-10-08 21:26:59 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
void solve(){
int n;
cin >> n;
vector<int>a(n);
bool ok = false;
for (int i = 0;i < n;i ++ ){
cin >> a[i];
if(a[i] < 0)ok = true;
}
i64 sum = accumulate(a.begin(), a.end(), 0LL);
int manx = *max_element(a.begin(), a.end());
int minv = *min_element(a.begin(), a.end());
if(ok){
i64 ans = 0;
for(int i = 0;i < n;i ++){
ans += abs(a[i]);
}
cout << ans << "\n";
}else{
cout << manx - minv + sum - manx - minv << "\n";
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int T = 1;
cin >> T;
while (T --){
solve();
}
return 0;
}
详细
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: 119ms
memory: 3680kb
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 ...
result:
wrong answer 1st numbers differ - expected: '2', found: '-2'