結果

問題 No.1374 Absolute Game
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-28 19:07:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 92,160 KB
最終ジャッジ日時 2024-06-09 12:11:40
合計ジャッジ時間 4,275 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 35 ms
52,608 KB
testcase_08 AC 93 ms
79,616 KB
testcase_09 AC 123 ms
87,144 KB
testcase_10 AC 132 ms
89,284 KB
testcase_11 AC 113 ms
83,584 KB
testcase_12 AC 90 ms
80,244 KB
testcase_13 AC 120 ms
85,632 KB
testcase_14 AC 140 ms
91,136 KB
testcase_15 AC 146 ms
92,000 KB
testcase_16 AC 139 ms
91,008 KB
testcase_17 AC 137 ms
91,952 KB
testcase_18 AC 143 ms
90,880 KB
testcase_19 AC 134 ms
91,876 KB
testcase_20 AC 100 ms
81,152 KB
testcase_21 AC 104 ms
82,640 KB
testcase_22 AC 136 ms
92,160 KB
testcase_23 AC 78 ms
76,488 KB
testcase_24 AC 85 ms
76,800 KB
testcase_25 AC 89 ms
77,568 KB
testcase_26 AC 99 ms
80,100 KB
testcase_27 AC 98 ms
82,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
C = list(map(int, input().split()))

s = sum(C)
if s < 0:
    C = [-c for c in C]

import heapq
q = []
heapq.heapify(q)
for c in C:
    heapq.heappush(q, -c)
a = 0
b = 0
for i in range(n):
    v = -heapq.heappop(q)
    if i%2 == 0:
        a += v
    else:
        b += v
print(abs(a)-abs(b))
0