結果
問題 | No.972 選び方のスコア |
ユーザー | tko919 |
提出日時 | 2020-01-17 22:27:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 938 bytes |
コンパイル時間 | 2,223 ms |
コンパイル使用メモリ | 171,704 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-25 21:46:46 |
合計ジャッジ時間 | 4,605 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
5,248 KB |
testcase_01 | AC | 45 ms
5,376 KB |
testcase_02 | AC | 43 ms
5,376 KB |
testcase_03 | AC | 23 ms
5,376 KB |
testcase_04 | AC | 44 ms
5,376 KB |
testcase_05 | AC | 44 ms
5,376 KB |
testcase_06 | AC | 43 ms
5,376 KB |
testcase_07 | AC | 34 ms
5,376 KB |
testcase_08 | AC | 30 ms
5,376 KB |
testcase_09 | AC | 30 ms
5,376 KB |
testcase_10 | AC | 30 ms
5,376 KB |
testcase_11 | AC | 31 ms
5,376 KB |
testcase_12 | AC | 31 ms
5,376 KB |
testcase_13 | AC | 31 ms
5,376 KB |
testcase_14 | AC | 31 ms
5,376 KB |
testcase_15 | AC | 33 ms
5,376 KB |
testcase_16 | AC | 32 ms
5,376 KB |
testcase_17 | AC | 33 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; //template #define rep(i,a,b) for(int i=(a);i<(b);i++) #define rrep(i,a,b) for(int i=(a);i>(b);i--) #define ALL(v) (v).begin(),(v).end() typedef long long int ll; const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12; void tostr(ll x,string& res){while(x)res+=('0'+(x%10)),x/=10; reverse(ALL(res)); return;} template<class T> inline bool chmax(T& a,T b){ if(a<b){a=b;return 1;}return 0; } template<class T> inline bool chmin(T& a,T b){ if(a>b){a=b;return 1;}return 0; } //template end int main(){ int n; scanf("%d",&n); vector<int> a(n); rep(i,0,n)scanf("%d",&a[i]); sort(ALL(a)); ll ls=0,rs=0,res=0,cur=0; int idx=n; rep(i,0,n){ if(i>=idx)break; ll val=a[i]; cur=ls+rs-val*2*i; chmax(res,cur); ls+=val; rs+=a[n-1-i]; idx=n-1-i; } printf("%lld\n",res); return 0; }