結果

問題 No.972 選び方のスコア
ユーザー ntudantuda
提出日時 2021-11-09 22:43:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 258 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,156 KB
最終ジャッジ日時 2024-11-19 05:37:52
合計ジャッジ時間 5,937 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 83 ms
83,968 KB
testcase_04 AC 125 ms
109,156 KB
testcase_05 AC 127 ms
108,996 KB
testcase_06 AC 126 ms
108,720 KB
testcase_07 WA -
testcase_08 AC 89 ms
107,088 KB
testcase_09 AC 89 ms
107,160 KB
testcase_10 AC 88 ms
106,908 KB
testcase_11 AC 97 ms
102,028 KB
testcase_12 AC 98 ms
102,112 KB
testcase_13 AC 100 ms
102,216 KB
testcase_14 AC 101 ms
102,148 KB
testcase_15 AC 111 ms
102,024 KB
testcase_16 AC 107 ms
102,008 KB
testcase_17 AC 108 ms
101,892 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 39 ms
53,168 KB
testcase_26 AC 39 ms
52,400 KB
testcase_27 AC 39 ms
52,048 KB
testcase_28 AC 39 ms
52,320 KB
testcase_29 AC 39 ms
51,988 KB
testcase_30 AC 40 ms
52,624 KB
testcase_31 AC 39 ms
52,484 KB
testcase_32 AC 40 ms
52,356 KB
testcase_33 AC 40 ms
52,432 KB
testcase_34 AC 40 ms
52,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
A.sort()
ans = 0
tmp = A[0]
n = 1
flag = 0
for i in range(1,N//2+1):
    tmp += A[i] + A[N - i]
    n += 2
    tmp2 = tmp - n * A[i]
    if tmp2 >= ans:
        ans = tmp2
    else:
        break
print(ans)
0