結果

問題 No.972 選び方のスコア
ユーザー kotatsugamekotatsugame
提出日時 2020-01-17 23:00:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 334 bytes
コンパイル時間 634 ms
コンパイル使用メモリ 70,200 KB
実行使用メモリ 7,244 KB
最終ジャッジ日時 2024-06-25 23:44:21
合計ジャッジ時間 4,068 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
7,116 KB
testcase_01 AC 94 ms
7,116 KB
testcase_02 AC 89 ms
6,944 KB
testcase_03 AC 44 ms
6,940 KB
testcase_04 AC 87 ms
7,116 KB
testcase_05 AC 84 ms
7,116 KB
testcase_06 AC 83 ms
7,116 KB
testcase_07 AC 68 ms
6,940 KB
testcase_08 AC 75 ms
6,992 KB
testcase_09 AC 74 ms
6,984 KB
testcase_10 AC 74 ms
7,116 KB
testcase_11 AC 79 ms
7,120 KB
testcase_12 AC 80 ms
6,984 KB
testcase_13 AC 83 ms
7,112 KB
testcase_14 AC 85 ms
7,116 KB
testcase_15 AC 77 ms
7,244 KB
testcase_16 AC 83 ms
6,988 KB
testcase_17 AC 80 ms
7,116 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
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
int N;
long A[2<<17];
long S[2<<17];
main()
{
	cin>>N;
	for(int i=0;i<N;i++)cin>>A[i];
	sort(A,A+N);
	for(int i=0;i<N;i++)S[i+1]=S[i]+A[i];
	long ans=0;
	for(int i=1;i<N-1;i++)
	{
		long L=min(i,N-1-i);
		ans=max(ans,S[N]-S[N-L]+S[i]-S[i-L]-2*L*A[i]);
	}
	cout<<ans<<endl;
}
0