Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99542 | 陈志轩 | 紧急集合 | C++ | 解答错误 | 10 | 2 MS | 372 KB | 392 | 2023-08-23 09:27:08 |
#include<bits/stdc++.h> using namespace std; priority_queue <int,vector <int>,greater <int> > p; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n,sum = 0; cin>>n; for (int i = 1;i <= n;i++){ int a; cin>>a; p.push(a); } int y = p.top(); while (!p.empty()){ int x = p.top(); sum += (sum + x); p.pop(); } cout<<sum - y * (n - 1); return 0; }