Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
111097 | 江婉儿 | K 次取反后最大化的数组和 | C++ | 解答错误 | 66 | 0 MS | 252 KB | 365 | 2023-11-18 10:24:40 |
#include<bits/stdc++.h> using namespace std; int main() { int s,k,c=0,he=0,e,a[100]; cin>>s>>k; for(int b=1;b<=s;b++) cin>>a[b]; int minn=9999; for(int b=1;b<=k;b++) { for(int d=1;d<=s;d++) { if(a[d]<minn) { minn=a[d]; e=d; } } a[e]=-a[e]; e=0; } for(int b=1;b<=s;b++) he+=a[b]; cout<<he; return 0; }